2014-07-20 14:09:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-10-19 12:13:47 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
source _common.sh
|
2017-10-19 12:13:47 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-11-12 15:39:12 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2017-10-19 12:31:32 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
2022-06-06 12:08:05 +02:00
|
|
|
db_user=$db_name
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
2017-10-23 16:17:55 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Removing dependencies..." --weight=9
|
2017-10-23 16:17:55 +02:00
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Removing the MySQL database..." --weight=4
|
2014-07-20 18:10:20 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
# Remove a database if it exists, along with the associated user
|
2022-06-06 12:08:05 +02:00
|
|
|
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-11-12 15:39:12 +01:00
|
|
|
ynh_script_progression --message="Removing Kanboard main directory..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Remove the app directory securely
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-12 15:39:12 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=2
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2020-11-12 15:39:12 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2017-10-21 22:52:21 +02:00
|
|
|
ynh_remove_nginx_config
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-12 15:39:12 +01:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=2
|
2014-12-22 18:56:59 +01:00
|
|
|
|
2020-11-12 15:39:12 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2017-10-21 22:52:21 +02:00
|
|
|
ynh_remove_fpm_config
|
2018-11-20 22:43:27 +01:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
#=================================================
|
2021-12-17 12:08:46 +01:00
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing dependencies..." --weight=1
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# GENERIC FINALIZATION
|
2018-11-20 22:43:27 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE FAIL2BAN CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-12 15:39:12 +01:00
|
|
|
ynh_script_progression --message="Removing Fail2Ban configuration..." --weight=7
|
2018-11-20 22:43:27 +01:00
|
|
|
|
|
|
|
ynh_remove_fail2ban_config
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2020-11-12 15:39:12 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE CRON FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing the cron file..." --weight=2
|
|
|
|
|
|
|
|
# Remove a cron file
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --weight=2
|
2019-02-15 19:49:22 +01:00
|
|
|
|
|
|
|
# Delete a system user
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2019-02-17 20:55:37 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-05-27 23:17:20 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|