2015-08-23 17:33:13 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-08-23 17:33:13 +02:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
source _common.sh
|
2017-02-17 13:10:19 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2015-08-23 17:33:13 +02:00
|
|
|
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
2020-10-14 04:28:54 +02:00
|
|
|
# REMOVE THE DATABASE
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
2020-11-13 11:25:58 +01:00
|
|
|
|
2022-07-13 17:22:05 +02:00
|
|
|
if [ $database = "mysql" ]; then
|
2023-06-04 11:23:42 +02:00
|
|
|
ynh_script_progression --message="Removing MySQL database..." --weight=1
|
|
|
|
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
|
2022-07-13 17:22:05 +02:00
|
|
|
elif [ $database = "postgresql" ]; then
|
2023-06-04 11:23:42 +02:00
|
|
|
ynh_script_progression --message="Removing PostgreSQL database..." --weight=1
|
|
|
|
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
|
2020-10-14 04:28:54 +02:00
|
|
|
fi
|
2018-04-30 20:24:17 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-08-13 11:54:19 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2018-04-30 20:24:17 +02:00
|
|
|
#=================================================
|
2023-08-13 11:54:19 +02:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2017-02-17 13:10:19 +01:00
|
|
|
|
2020-11-13 16:59:16 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2018-04-30 20:24:17 +02:00
|
|
|
ynh_remove_nginx_config
|
2017-02-17 13:10:19 +01:00
|
|
|
|
2020-11-13 16:59:16 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-04-30 20:24:17 +02:00
|
|
|
ynh_remove_fpm_config
|
2015-08-23 17:33:13 +02:00
|
|
|
|
2023-06-04 11:23:42 +02:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
2017-02-17 13:10:19 +01:00
|
|
|
|
2022-07-13 17:22:05 +02:00
|
|
|
# Remove the dedicated Fail2Ban config
|
|
|
|
ynh_remove_fail2ban_config
|
2020-04-23 00:03:42 +02:00
|
|
|
|
2022-07-13 17:22:05 +02:00
|
|
|
# Remove a cron file
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
2018-11-08 11:08:11 +01:00
|
|
|
|
2019-04-04 18:32:01 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-10-16 22:06:33 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|