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
|
|
|
|
#=================================================
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Loading installation settings..."
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
#REMOVEME? db_user=$db_name
|
|
|
|
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
|
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
|
2020-11-23 23:39:34 +01: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
|
2022-02-03 08:21:04 +01:00
|
|
|
ynh_script_progression --message="Removing $app service integration..."
|
2020-11-23 23:39:34 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
2020-07-24 18:32:57 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
2022-02-03 08:21:04 +01:00
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service..."
|
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
|
|
|
#=================================================
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Removing the PostgreSQL database..."
|
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
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? 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
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Removing app main directory..."
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2020-07-24 18:32:57 +02:00
|
|
|
# Remove the app directory securely
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? ynh_secure_remove --file="$install_dir"
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2020-09-17 10:57:58 +02:00
|
|
|
#=================================================
|
2022-02-03 08:21:04 +01:00
|
|
|
# REMOVE NGINX CONFIGURATION
|
2020-09-17 10:57:58 +02:00
|
|
|
#=================================================
|
2022-02-03 08:21:04 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..."
|
2020-09-17 10:57:58 +02:00
|
|
|
|
2022-02-03 08:21:04 +01:00
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
2020-09-17 10:57:58 +02:00
|
|
|
|
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
|
|
|
#=================================================
|
2022-02-03 08:21:04 +01:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration..."
|
2018-08-10 17:06:29 +02:00
|
|
|
|
2022-02-03 08:21:04 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2020-07-24 18:32:57 +02:00
|
|
|
ynh_remove_fpm_config
|
2018-08-10 17:06:29 +02:00
|
|
|
|
2022-02-03 08:21:04 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Removing dependencies..."
|
2022-02-03 08:21:04 +01:00
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? ynh_remove_app_dependencies
|
2022-02-03 08:21:04 +01:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? ynh_script_progression --message="Removing the dedicated system user..."
|
2018-08-10 15:55:41 +02:00
|
|
|
|
2018-08-12 00:10:46 +02:00
|
|
|
# Delete a system user
|
2024-01-29 17:21:02 +01:00
|
|
|
#REMOVEME? ynh_system_user_delete --username=$app
|
2020-07-24 18:32:57 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-02-03 08:21:04 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|