1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/scripts/remove

91 lines
3 KiB
Text
Raw Normal View History

#!/bin/bash
2018-03-13 21:49:11 +01:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-02-02 03:37:01 +01:00
source _common.sh
2021-07-12 13:54:37 +02:00
source /usr/share/yunohost/helpers
2018-03-13 21:49:11 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2018-03-13 21:49:11 +01:00
2017-02-02 03:37:01 +01:00
app=$YNH_APP_INSTANCE_NAME
2018-03-13 21:49:11 +01:00
2021-07-12 12:11:43 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2022-01-14 01:29:27 +01:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2018-03-13 21:49:11 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Removing dependencies..." --weight=1
2018-03-13 21:49:11 +01:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
2021-07-12 12:11:43 +02:00
# REMOVE THE MYSQL DATABASE
2018-03-13 21:49:11 +01:00
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Removing the MySQL database..." --weight=1
2018-03-13 21:49:11 +01:00
# Remove a database if it exists, along with the associated user
2021-07-12 12:11:43 +02:00
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
2018-03-13 21:49:11 +01:00
#=================================================
# REMOVE THE MAIN DIR OF THE APP
#=================================================
2021-07-12 13:56:50 +02:00
ynh_script_progression --message="Removing app main directory..." --weight=1
2017-02-02 03:37:01 +01:00
2018-03-13 21:49:11 +01:00
# Remove the app directory securely
2021-07-12 12:11:43 +02:00
ynh_secure_remove --file="$final_path"
2022-01-14 01:29:27 +01:00
#=================================================
# REMOVE DATA DIR
#=================================================
# Remove the data directory if --purge option is used
if [ "${YNH_APP_PURGE:-0}" -eq 1 ]
then
ynh_script_progression --message="Removing app data directory..." --weight=1
ynh_secure_remove --file="$datadir"
fi
2018-03-13 21:49:11 +01:00
#=================================================
# REMOVE THE NGINX CONFIGURATION
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2017-02-02 03:37:01 +01:00
2021-07-12 12:11:43 +02:00
# Remove the dedicated NGINX config
2018-03-13 21:49:11 +01:00
ynh_remove_nginx_config
2018-03-13 21:49:11 +01:00
#=================================================
2021-07-12 12:11:43 +02:00
# REMOVE PHP-FPM CONFIGURATION
2018-03-13 21:49:11 +01:00
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
2021-07-12 12:11:43 +02:00
# Remove the dedicated PHP-FPM config
2018-03-13 21:49:11 +01:00
ynh_remove_fpm_config
2018-03-13 21:49:11 +01:00
#=================================================
# REMOVE DEDICATED USER
#=================================================
2021-07-12 12:11:43 +02:00
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
2017-02-05 23:38:38 +01:00
2018-03-13 21:49:11 +01:00
# Delete a system user
2021-07-12 12:11:43 +02:00
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last