1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/airsonic_ynh.git synced 2024-09-03 18:06:14 +02:00
airsonic_ynh/scripts/remove

110 lines
3.5 KiB
Text
Raw Normal View History

2019-02-06 19:37:46 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-22 22:10:48 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2019-02-06 19:37:46 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-05-22 22:10:48 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
port=$(ynh_app_setting_get --app=$app --key=port)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-05-24 21:10:58 +02:00
service_config=$(ynh_app_setting_get --app=$app --key=service_config)
2019-02-06 19:37:46 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE FROM ADMIN PANEL
#=================================================
# Remove a service from the admin panel, added by `yunohost service add`
2019-05-22 22:10:48 +02:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
2019-02-06 19:37:46 +01:00
then
2019-05-22 22:10:48 +02:00
ynh_script_progression --message="Removing $app service..." --weight=2
2019-02-06 19:37:46 +01:00
yunohost service remove $app
fi
#=================================================
2019-05-22 22:10:48 +02:00
# STOP AND REMOVE SERVICE
2019-02-06 19:37:46 +01:00
#=================================================
2019-05-22 22:10:48 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
2019-02-06 19:37:46 +01:00
2019-05-22 22:10:48 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2019-02-06 19:37:46 +01:00
2019-05-22 22:10:48 +02:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_script_progression --message="Removing dependencies..." --weight=19
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2019-02-06 19:37:46 +01:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2019-05-22 22:10:48 +02:00
ynh_script_progression --message="Removing app main directory..." --weight=1
2019-02-06 19:37:46 +01:00
# Remove the app directory securely
2019-05-22 22:10:48 +02:00
ynh_secure_remove --file="$final_path"
2019-02-06 19:37:46 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2019-05-22 22:10:48 +02:00
ynh_script_progression --message="Removing nginx web server configuration..." --weight=1
2019-02-06 19:37:46 +01:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2019-05-22 22:10:48 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
2019-02-06 19:37:46 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
2019-05-22 22:10:48 +02:00
ynh_script_progression --message="Closing port $port..."
ynh_exec_warn_less yunohost firewall disallow TCP $port
2019-02-06 19:37:46 +01:00
fi
#=================================================
# SPECIFIC REMOVE
#=================================================
2019-05-24 21:10:58 +02:00
# REMOVE FILES
2019-02-06 19:37:46 +01:00
#=================================================
2019-05-24 21:10:58 +02:00
ynh_secure_remove --file="$service_config"
2019-02-06 19:37:46 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2019-05-22 22:10:48 +02:00
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
2019-02-06 19:37:46 +01:00
# Delete a system user
2019-05-22 22:10:48 +02:00
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last