2016-10-05 19:44:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
source _common.sh
|
2020-05-17 14:56:21 +02:00
|
|
|
source experimental_helpers/ynh_add_swap
|
2016-10-05 19:44:08 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
2018-02-12 21:53:49 +01:00
|
|
|
db_user=$db_name
|
2019-08-24 12:54:18 +02:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2018-02-12 16:07:11 +01:00
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Removing the MySQL database..." --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2020-06-12 03:55:01 +02:00
|
|
|
ynh_script_progression --message="Removing dependencies..." --weight=2
|
2019-08-24 12:54:18 +02:00
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Removing app main directory..." --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-05-15 18:39:31 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
2021-05-15 18:39:31 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2018-02-12 16:07:11 +01:00
|
|
|
ynh_remove_nginx_config
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-05-15 18:39:31 +02:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
2021-05-15 18:39:31 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-02-12 16:07:11 +01:00
|
|
|
ynh_remove_fpm_config
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
# REMOVE VARIOUS FILES
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the log files
|
2019-09-22 15:35:35 +02:00
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
2019-08-24 12:54:18 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Delete a system user
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
2020-05-17 14:56:21 +02:00
|
|
|
#===================================================
|
|
|
|
# REMOVE SWAP
|
|
|
|
#===================================================
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Removing swap..." --weight=1
|
2020-05-17 14:56:21 +02:00
|
|
|
|
|
|
|
ynh_del_swap
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|