2019-03-12 00:02:09 +01:00
|
|
|
#!/bin/bash
|
2015-09-27 23:55:31 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-09-27 23:37:04 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-09-27 23:37:04 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2015-09-27 23:42:07 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2015-09-29 01:47:07 +02:00
|
|
|
|
2020-11-28 11:36:27 +01:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
2023-01-20 03:11:57 +01:00
|
|
|
db_user=$(ynh_app_setting_get --app=$app --key=db_user)
|
2020-11-28 11:36:27 +01:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2015-09-29 01:47:07 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
2023-01-19 03:54:09 +01:00
|
|
|
# REMOVE THE POSTGRESQL DATABASE(S) & ROLE
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
2023-01-19 03:54:09 +01:00
|
|
|
ynh_script_progression --message="Removing all associated PostgreSQL database(s) and role"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2023-01-19 03:54:09 +01:00
|
|
|
# Remove all existing databases associated with the app's dedicated user a database if it exists
|
2023-01-23 03:45:28 +01:00
|
|
|
ynh_psql_remove_all_user_dbs --db_user=$db_user;
|
2023-01-19 03:54:09 +01:00
|
|
|
|
|
|
|
# Remove dedicated PostgreSQL role
|
|
|
|
if ynh_psql_user_exists --user=$db_user; then
|
|
|
|
ynh_psql_drop_user $db_user
|
|
|
|
ynh_print_info --message="Removed PostgreSQL role $db_user"
|
|
|
|
else
|
|
|
|
ynh_print_warn --message="User $db_user not found"
|
|
|
|
fi
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Removing app main directory"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
2021-07-04 10:23:53 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2019-03-12 00:02:09 +01:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2019-03-12 00:02:09 +01:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2022-03-13 15:55:16 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing dependencies"
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Removing logrotate configuration"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
|
|
|
##=================================================
|
|
|
|
## GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
# Delete a system user
|
2020-11-28 10:11:19 +01:00
|
|
|
ynh_system_user_delete --username=$app
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|