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

108 lines
3.6 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
source experimental_helpers/_ynh_add_extra_apt_repos
source experimental_helpers/ynh_install_php
2016-10-05 19:44:08 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Loading installation settings..." --time --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)
port=$(ynh_app_setting_get --app=$app --key=port)
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
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Removing the MySQL database..." --time --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
#=================================================
ynh_script_progression --message="Removing dependencies..." --time --weight=1
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2020-04-06 10:54:13 +02:00
if [ "$(lsb_release --codename --short)" != "buster" ]; then
ynh_remove_php
fi
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Removing app main directory..." --time --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
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Removing nginx web server configuration..." --time --weight=1
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Removing php-fpm configuration..." --time --weight=1
# Remove the dedicated php-fpm config
ynh_remove_fpm_config
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --time --weight=1
# Remove the app-specific logrotate config
ynh_remove_logrotate
2019-08-24 12:54:18 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE CRON FILE
#=================================================
# Remove a temp directory securely
ynh_secure_remove --file="/tmp/$app"
ynh_secure_remove --file="/tmp/${app}backup"
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
#=================================================
2019-08-24 12:54:18 +02:00
ynh_script_progression --message="Removing the dedicated system user..." --time --weight=1
# Delete a system user
2019-08-24 12:54:18 +02:00
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --time --last