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

106 lines
3.4 KiB
Text
Raw Normal View History

2016-10-05 19:44:08 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-10-05 19:44:08 +02:00
source _common.sh
2020-05-17 14:56:21 +02:00
source experimental_helpers/ynh_add_swap
2016-10-05 19:44:08 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2016-10-05 19:44:08 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-08-24 12:54:18 +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
2019-08-24 12:54:18 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-08-24 12:54:18 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE THE MYSQL DATABASE
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Removing the MySQL database..." --weight=1
# Remove a database if it exists, along with the associated user
2019-08-24 12:54:18 +02:00
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2020-06-12 03:55:01 +02:00
ynh_script_progression --message="Removing dependencies..." --weight=2
2019-08-24 12:54:18 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Removing app main directory..." --weight=1
# Remove the app directory securely
2019-08-24 12:54:18 +02:00
ynh_secure_remove --file="$final_path"
2016-10-05 19:44:08 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2021-05-15 18:39:31 +02:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2021-05-15 18:39:31 +02:00
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
2021-05-15 18:39:31 +02:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
# Remove the app-specific logrotate config
ynh_remove_logrotate
2019-08-24 12:54:18 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
2020-06-12 01:55:21 +02:00
# REMOVE VARIOUS FILES
2019-08-24 12:54:18 +02:00
#=================================================
# Remove the log files
ynh_secure_remove --file="/var/log/$app"
2019-08-24 12:54:18 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
# Delete a system user
2019-08-24 12:54:18 +02:00
ynh_system_user_delete --username=$app
2020-05-17 14:56:21 +02:00
#===================================================
# REMOVE SWAP
#===================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Removing swap..." --weight=1
2020-05-17 14:56:21 +02:00
ynh_del_swap
2019-08-24 12:54:18 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Removal of $app completed" --last