2013-11-29 12:49:27 +01:00
|
|
|
#!/bin/bash
|
2014-05-29 12:09:07 +02:00
|
|
|
|
2020-10-20 23:45:55 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2017-03-08 23:32:42 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-10-20 23:45:55 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2020-10-20 23:28:09 +02:00
|
|
|
|
2017-03-08 23:32:42 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-11-25 22:08:24 +01:00
|
|
|
|
2020-11-22 22:17:57 +01:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2016-05-13 22:29:15 +02:00
|
|
|
|
2020-10-20 23:45:55 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-11-22 22:34:17 +01:00
|
|
|
ynh_script_progression --message="Removing app main directory..." --weight=3
|
2020-10-20 23:45:55 +02:00
|
|
|
|
2020-11-22 22:17:57 +01:00
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file=$final_path
|
2020-10-20 23:45:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-04-13 20:08:47 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2020-10-20 23:45:55 +02:00
|
|
|
|
2020-11-22 22:17:57 +01:00
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
2020-10-20 23:45:55 +02:00
|
|
|
|
2021-07-21 14:51:44 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=3
|
|
|
|
|
|
|
|
# Remove the dedicated PHP-FPM config
|
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2021-06-20 18:24:46 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
|
|
|
|
|
|
|
|
# Delete a system user
|
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
2020-10-20 23:45:55 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-22 22:17:57 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|