2015-08-03 12:05:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-07-11 18:41:22 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
source _common.sh
|
2018-08-10 14:59:24 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-07-10 16:24:09 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2016-07-10 16:24:09 +02:00
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2018-08-10 16:36:04 +02:00
|
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
2018-08-10 17:06:29 +02:00
|
|
|
port=$(ynh_app_setting_get "$app" port)
|
2018-08-12 00:29:57 +02:00
|
|
|
db_name=$(ynh_app_setting_get "$app" db_name)
|
|
|
|
db_user=$db_name
|
2015-08-03 12:05:52 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service" --weight=1
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2020-07-24 18:32:57 +02:00
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
2018-08-10 15:55:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
# REMOVE THE POSTGRESQL DATABASE
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
ynh_script_progression --message="Removing the PostgreSQL database" --weight=1
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2020-07-24 18:32:57 +02:00
|
|
|
# Remove a database if it exists, along with the associated user
|
|
|
|
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
|
2016-07-10 18:42:32 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
# REMOVE NGINX CONFIGURATION
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=5
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2020-07-24 18:32:57 +02:00
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
2015-08-03 12:05:52 +02:00
|
|
|
|
2018-08-10 15:00:05 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
ynh_script_progression --message="Removing app main directory..." --weight=6
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2020-07-24 18:32:57 +02:00
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2020-09-17 10:57:58 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE APP CACHE DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing app cache directory..." --weight=6
|
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="/home/$app"
|
|
|
|
|
2018-08-10 17:06:29 +02:00
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
2018-08-10 17:06:29 +02:00
|
|
|
#=================================================
|
2020-09-17 10:57:58 +02:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=2
|
2018-08-10 17:06:29 +02:00
|
|
|
|
2020-07-24 18:32:57 +02:00
|
|
|
# Remove the dedicated php-fpm config
|
|
|
|
ynh_remove_fpm_config
|
2018-08-10 17:06:29 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2020-07-24 18:32:57 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2018-08-12 00:10:46 +02:00
|
|
|
# Delete a system user
|
2020-07-24 18:32:57 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|
|
|
|
|