2017-04-24 04:16:02 +02:00
|
|
|
#!/bin/bash
|
2015-09-29 02:28:53 +02:00
|
|
|
|
2018-02-02 16:59:51 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-09-29 02:28:53 +02:00
|
|
|
|
2018-02-02 16:59:51 +01:00
|
|
|
source _common.sh
|
2017-04-24 04:16:02 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2015-09-29 02:28:53 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2018-02-02 16:59:51 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
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-02-02 16:59:51 +01:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE FROM ADMIN PANEL
|
|
|
|
#=================================================
|
2015-09-29 02:28:53 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
# Remove a service from the admin panel, added by `yunohost service add`
|
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Removing $app service..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
2015-09-29 02:28:53 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Removing the MySQL database..." --weight=9
|
2015-09-29 02:28:53 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
# Remove a database if it exists, along with the associated user
|
|
|
|
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Removing app main directory..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
2019-06-27 22:44:38 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Removing nginx web server configuration..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Removing php-fpm configuration..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Remove the dedicated php-fpm config
|
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
2019-07-05 22:33:55 +02:00
|
|
|
# REMOVE APP FOLDERS
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove a directory securely
|
2019-07-05 22:33:55 +02:00
|
|
|
ynh_secure_remove --file="/etc/$app"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Remove the log files
|
2019-07-05 22:33:55 +02:00
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
# Delete a system user
|
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|