2016-08-15 15:38:50 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-08 17:25:54 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
2018-02-07 00:31:25 +01:00
|
|
|
# IMPORT GENERIC HELPERS
|
2020-10-11 23:51:25 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2018-02-07 00:31:25 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-04-05 21:06:22 +02:00
|
|
|
|
2020-10-11 23:51:25 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
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)
|
2016-08-15 15:38:50 +02:00
|
|
|
|
2018-02-08 17:25:54 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2020-10-11 23:51:25 +02:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the service from the list of services known by Yunohost (added from `yunohost service add`)
|
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=1
|
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
|
2016-08-15 15:38:50 +02:00
|
|
|
|
2020-10-11 23:51:25 +02:00
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
2016-08-15 15:38:50 +02:00
|
|
|
|
2020-10-11 23:51:25 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing the MySQL database..." --weight=2
|
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
|
|
|
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
|
2016-08-15 15:38:50 +02:00
|
|
|
|
2020-10-11 23:51:25 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-12-06 15:08:51 +01:00
|
|
|
ynh_script_progression --message="Removing app main directory..." --weight=3
|
2020-10-11 23:51:25 +02:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE VARIOUS FILES
|
|
|
|
#=================================================
|
2016-08-15 15:38:50 +02:00
|
|
|
|
2020-11-20 10:49:08 +01:00
|
|
|
ynh_secure_remove --file="/home/$app"
|
2020-10-11 23:51:25 +02:00
|
|
|
|
2020-11-20 10:49:08 +01:00
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
2018-02-07 00:31:25 +01:00
|
|
|
|
2020-10-11 23:51:25 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
|
|
|
|
|
2018-02-07 00:31:25 +01:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2020-10-11 23:51:25 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
|
|
|
|
2020-12-06 14:50:47 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2018-02-07 00:31:25 +01:00
|
|
|
ynh_remove_nginx_config
|
2016-08-15 15:38:50 +02:00
|
|
|
|
2020-10-11 23:51:25 +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
|
2016-08-15 15:38:50 +02:00
|
|
|
|
2020-10-11 23:51:25 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2016-08-15 15:38:50 +02:00
|
|
|
|
2020-10-11 23:51:25 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|