2014-01-13 13:50:38 +01:00
|
|
|
#!/bin/bash
|
2016-05-14 18:34:34 +02:00
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
source _common.sh
|
2017-09-28 18:02:10 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2016-05-13 21:34:03 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-01-13 13:50:38 +01:00
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MAIN DIR OF THE APP
|
|
|
|
#=================================================
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Removing app main directory..."
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Removing nginx web server configuration..."
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Removing php-fpm configuration..." --weight=2
|
2017-09-28 18:02:10 +02:00
|
|
|
|
|
|
|
# Remove the dedicated php-fpm config
|
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2020-03-03 20:23:09 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE CRON FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing the cron file..."
|
|
|
|
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Removing data directory..."
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_secure_remove --file="/home/yunohost.app/$app"
|
2016-05-13 21:34:03 +02:00
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..."
|
2014-01-13 13:50:38 +01:00
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
# Delete a system user
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
2019-02-17 20:55:13 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-06 14:14:36 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|