2015-05-31 13:46:25 +02:00
|
|
|
#!/bin/bash
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2017-02-02 03:37:01 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
source _common.sh
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
|
2017-02-02 03:37:01 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2018-03-13 21:49:11 +01:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_user=$db_name
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Removing dependencies..." --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
# REMOVE THE MYSQL DATABASE
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Removing the MySQL database..." --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MAIN DIR OF THE APP
|
|
|
|
#=================================================
|
2017-02-02 03:37:01 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
# Remove the app directory securely
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
|
|
|
ynh_secure_remove --file="/home/yunohost.app/$app"
|
2017-02-05 22:45:48 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2017-02-02 03:37:01 +01:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_remove_nginx_config
|
2017-02-05 22:45:48 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
|
2017-02-05 22:45:48 +01:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_remove_fpm_config
|
2017-02-05 22:45:48 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
|
2017-02-05 23:38:38 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
# Delete a system user
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|