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
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
port=$(ynh_app_setting_get $app port)
|
|
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
|
|
|
db_user=$db_name
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
2015-09-29 01:47:07 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#===============#==================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE FROM ADMIN PANEL
|
|
|
|
#=================================================
|
2015-09-29 01:47:07 +02:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# 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
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
# REMOVE THE POSTGRESQL DATABASE
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Removing the PostgreSQL database"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Removing dependencies"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
ynh_secure_remove "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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"
|