2015-03-19 20:49:50 +01:00
|
|
|
#!/bin/bash
|
2015-11-18 00:28:42 +01:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-06-15 23:56:45 +02:00
|
|
|
|
2017-03-21 00:44:14 +01:00
|
|
|
source _common.sh
|
2016-11-08 13:33:28 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-20 00:01:21 +02:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-01-30 16:19:40 +01:00
|
|
|
ynh_script_progression --message="Load settings" --weight=2
|
2017-03-19 19:16:10 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2016-12-14 16:10:00 +01:00
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
2015-03-26 13:07:01 +01:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
2019-01-30 16:19:40 +01:00
|
|
|
ynh_script_progression --message="Stop and remove the service" --weight=6
|
2017-03-19 19:16:10 +01:00
|
|
|
|
2019-01-18 19:56:43 +01:00
|
|
|
# Remove the dedicated systemd config
|
2017-05-24 16:48:26 +02:00
|
|
|
ynh_remove_systemd_config
|
2016-05-20 00:01:21 +02:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2019-01-18 19:56:43 +01:00
|
|
|
# REMOVE SERVICE FROM ADMIN PANEL
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
|
2019-01-18 19:56:43 +01:00
|
|
|
# Check if the service is declared in YunoHost
|
|
|
|
if yunohost service status | grep -q $app
|
2016-05-20 00:01:21 +02:00
|
|
|
then
|
2017-12-16 23:22:54 +01:00
|
|
|
ynh_print_info "Remove $app service" >&2
|
2017-09-05 00:25:58 +02:00
|
|
|
yunohost service remove $app
|
2016-03-31 22:41:54 +02:00
|
|
|
fi
|
2015-03-26 13:07:01 +01:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2019-01-30 16:19:40 +01:00
|
|
|
ynh_script_progression --message="Remove dependencies" --weight=20
|
2017-03-19 19:16:10 +01:00
|
|
|
|
2019-01-18 19:56:43 +01:00
|
|
|
# Remove metapackage and its dependencies
|
2017-03-19 19:16:10 +01:00
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
|
|
|
#=================================================
|
2019-01-18 19:56:43 +01:00
|
|
|
# REMOVE APP MAIN DIR
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2019-01-30 16:19:40 +01:00
|
|
|
ynh_script_progression --message="Remove app main directory" --weight=2
|
2017-03-19 19:16:10 +01:00
|
|
|
|
2019-01-18 19:56:43 +01:00
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove "/var/www/$app"
|
2015-11-18 00:28:42 +01:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2019-01-18 19:56:43 +01:00
|
|
|
# REMOVE NGINX CONFIGURATION
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2019-01-30 16:19:40 +01:00
|
|
|
ynh_script_progression --message="Remove nginx configuration"
|
2017-03-19 19:16:10 +01:00
|
|
|
|
2019-01-18 19:56:43 +01:00
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
2015-11-18 00:28:42 +01:00
|
|
|
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2019-01-18 19:56:43 +01:00
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
2019-01-30 16:19:40 +01:00
|
|
|
ynh_script_progression --message="Remove logrotate configuration"
|
2017-03-19 19:16:10 +01:00
|
|
|
|
2019-01-18 19:56:43 +01:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
2017-03-19 19:16:10 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
2019-01-18 19:56:43 +01:00
|
|
|
# REMOVE CRON JOB
|
2017-03-19 19:16:10 +01:00
|
|
|
#=================================================
|
|
|
|
|
2017-05-24 16:48:26 +02:00
|
|
|
ynh_secure_remove "/etc/cron.d/$app"
|
2019-01-30 16:19:40 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Deletion completed" --last
|