2016-09-18 11:03:26 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-05-05 17:03:04 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-09-18 11:03:26 +02:00
|
|
|
|
2018-05-05 17:03:04 +02:00
|
|
|
source _common.sh
|
2016-09-18 11:03:26 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2018-05-05 17:03:04 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2018-05-05 17:03:04 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
|
|
|
db_user=$db_name
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_script_progression --message="Removing the MySQL database"
|
2018-05-05 17:03:04 +02:00
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
|
|
|
ynh_mysql_remove_db $db_user $db_name
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_script_progression --message="Removing app main directory"
|
2018-05-05 17:03:04 +02:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2018-05-05 17:03:04 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration"
|
2018-05-05 17:03:04 +02:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration"
|
2018-05-05 17:03:04 +02:00
|
|
|
|
|
|
|
# Remove the dedicated php-fpm config
|
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE CRON FILE
|
|
|
|
#=================================================
|
2016-09-18 11:03:26 +02:00
|
|
|
|
2018-05-05 17:03:04 +02:00
|
|
|
# Remove a cron file
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
2016-09-18 11:03:26 +02:00
|
|
|
|
2018-05-05 17:03:04 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user"
|
2016-09-18 11:03:26 +02:00
|
|
|
|
2018-05-05 17:03:04 +02:00
|
|
|
# Delete a system user
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
2019-03-04 23:51:16 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-19 10:53:00 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|