1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tvheadend_ynh.git synced 2024-10-01 13:34:50 +02:00
tvheadend_ynh/scripts/remove

127 lines
4.4 KiB
Text
Raw Normal View History

2019-10-15 15:56:27 +02:00
#!/bin/bash
2017-09-28 12:47:55 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-10-15 15:56:27 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
2019-10-16 13:19:40 +02:00
path_url=$(ynh_app_setting_get --app=$app --key=path)
2019-10-15 17:33:46 +02:00
superuser=$(ynh_app_setting_get --app=$app --key=superuser)
2019-10-23 10:16:15 +02:00
password=$(ynh_app_setting_get --app=$app --key=password)
2019-10-15 15:56:27 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
port=$(ynh_app_setting_get --app=$app --key=port)
stream_port=$(ynh_app_setting_get --app=$app --key=stream_port)
#=================================================
# STANDARD REMOVE
#=================================================
2019-10-23 10:16:15 +02:00
# STOP AND DISABLE TVHEADEND SERVICE
2019-10-20 18:28:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Stopping $app service..." --weight=2
2019-10-20 18:28:27 +02:00
2019-10-23 10:16:15 +02:00
ynh_systemd_action --service_name=$app --action=stop
ynh_exec_quiet systemctl disable $app
ynh_exec_quiet systemctl daemon-reload
2019-10-20 18:28:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# UNHOLD TVHEADEND FROM APT
#=================================================
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Disable prevent $app being upgraded throught APT..." --weight=2
apt-mark unhold tvheadend
2019-10-20 18:28:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# REMOVE SERVICE FROM ADMIN PANEL
2019-10-15 15:56:27 +02:00
#=================================================
# Remove a service from the admin panel, added by `yunohost service add`
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
ynh_script_progression --message="Removing $app service..." --weight=1
yunohost service remove $app
fi
#=================================================
2019-10-23 10:16:15 +02:00
# REMOVE LOGROTATE CONFIGURATION
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-20 18:28:27 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
2019-10-15 15:56:27 +02:00
2019-10-20 18:28:27 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
ynh_script_progression --message="Removing $app log file..." --weight=1
# Remove the log files
ynh_secure_remove --file="/var/log/$app.log"
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# REMOVE NGINX CONFIGURATION
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-20 18:28:27 +02:00
ynh_script_progression --message="Removing nginx web server configuration..." --weight=1
2019-10-15 15:56:27 +02:00
2019-10-20 18:28:27 +02:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# REMOVE APP MAIN DIR AND CONFIG FILES
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Removing $app main directory and config files..." --weight=2
2019-10-15 15:56:27 +02:00
2019-10-23 10:16:15 +02:00
# Remove the app directory securely (/home/hts folder)
ynh_secure_remove --file="$final_path"
ynh_secure_remove --file="/etc/default/tvheadend"
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# REMOVE TVHEADEND
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Removing $app..." --weight=6
2019-10-15 15:56:27 +02:00
2019-10-23 10:16:15 +02:00
ynh_package_autopurge $app
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# REMOVE DEDICATED USER
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-20 18:28:27 +02:00
ynh_script_progression --message="Removing the dedicated hts system user..." --weight=1
2019-10-15 15:56:27 +02:00
2019-10-20 18:28:27 +02:00
# Delete a system user
ynh_system_user_delete --username=hts
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# REMOVE DEPENDENCIES
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-20 18:28:27 +02:00
ynh_script_progression --message="Removing dependencies..." --weight=3
2019-10-15 15:56:27 +02:00
2019-10-20 18:28:27 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# CLOSE TVHEADEND PORTS
2019-10-15 15:56:27 +02:00
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Closing port $port..." --weight=8
2019-10-15 15:56:27 +02:00
ynh_exec_warn_less yunohost firewall disallow TCP $port
fi
if yunohost firewall list | grep -q "\- $stream_port$"
then
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Closing port $stream_port..." --weight=8
2019-10-15 15:56:27 +02:00
ynh_exec_warn_less yunohost firewall disallow TCP $stream_port
fi
#=================================================
# END OF SCRIPT
#=================================================
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Removal of $app completed" --last
2019-10-15 15:56:27 +02:00