2019-02-06 19:37:46 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE FROM ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove a service from the admin panel, added by `yunohost service add`
|
2019-05-22 22:10:48 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
2019-02-06 19:37:46 +01:00
|
|
|
then
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Removing $app service..." --weight=2
|
2019-02-06 19:37:46 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
# STOP AND REMOVE SERVICE
|
2019-02-06 19:37:46 +01:00
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing dependencies..." --weight=19
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Removing app main directory..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-12-03 13:01:51 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2020-12-03 13:01:51 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2019-02-06 19:37:46 +01:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
2019-05-24 21:10:58 +02:00
|
|
|
# REMOVE FILES
|
2019-02-06 19:37:46 +01:00
|
|
|
#=================================================
|
|
|
|
|
2021-03-17 22:09:46 +01:00
|
|
|
ynh_secure_remove --file="/etc/default/$app"
|
2019-05-24 21:10:58 +02:00
|
|
|
|
2019-02-06 19:37:46 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
# Delete a system user
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|