2013-10-29 14:26:46 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
2016-05-14 09:56:38 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
port=$(ynh_app_setting_get $app port)
|
|
|
|
peer_port=$(ynh_app_setting_get $app peer_port)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE TRANSMISSION-DAEMON
|
|
|
|
#=================================================
|
|
|
|
|
2018-03-03 18:39:57 +01:00
|
|
|
ynh_remove_app_dependencies
|
2017-06-13 23:37:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DISABLE SERVICE IN ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
2017-08-27 22:01:10 +02:00
|
|
|
if yunohost service status | grep -q transmission-daemon
|
2017-06-13 23:37:51 +02:00
|
|
|
then
|
|
|
|
echo "Remove transmission-daemon service"
|
2017-08-27 22:01:10 +02:00
|
|
|
yunohost service remove transmission-daemon
|
2017-06-13 23:37:51 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CLOSE THE PORTS
|
|
|
|
#=================================================
|
|
|
|
|
2017-08-27 22:01:10 +02:00
|
|
|
if yunohost firewall list | grep -q "\- $port$"
|
|
|
|
then
|
|
|
|
echo "Close port $port"
|
|
|
|
yunohost firewall disallow TCP $port 2>&1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if yunohost firewall list | grep -q "\- $peer_port$"
|
|
|
|
then
|
|
|
|
echo "Close port $peer_port"
|
2018-03-03 18:53:33 +01:00
|
|
|
yunohost firewall disallow Both $peer_port 2>&1
|
2017-08-27 22:01:10 +02:00
|
|
|
fi
|
2017-06-13 23:37:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2013-10-29 14:26:46 +01:00
|
|
|
|
2017-08-27 22:01:10 +02:00
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
2016-05-14 09:56:38 +02:00
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DATA
|
|
|
|
#=================================================
|
2016-05-14 09:56:38 +02:00
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
backup_core_only=$(ynh_app_setting_get $app backup_core_only)
|
2017-08-27 22:01:10 +02:00
|
|
|
# If backup_core_only have a value in settings.yml, do not remove the data directory
|
|
|
|
if [ -z $backup_core_only ]
|
2017-06-13 23:37:51 +02:00
|
|
|
then
|
|
|
|
ynh_secure_remove /home/yunohost.transmission
|
|
|
|
fi
|
2013-10-29 14:26:46 +01:00
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
# And remove the link in yunohost.multimedia
|
2017-08-27 22:01:10 +02:00
|
|
|
rm "/home/yunohost.multimedia/share/Torrents"
|
|
|
|
rm "/home/yunohost.multimedia/share/Torrent to download"
|
2013-10-29 14:26:46 +01:00
|
|
|
|
2017-06-16 20:38:31 +02:00
|
|
|
# Web interface
|
2017-06-13 23:37:51 +02:00
|
|
|
ynh_secure_remove /usr/share/transmission
|
2017-06-16 20:38:31 +02:00
|
|
|
# And data
|
|
|
|
ynh_secure_remove /var/lib/transmission-daemon
|
2017-06-15 00:33:49 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_system_user_delete debian-transmission
|