2013-12-19 03:02:51 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2022-07-22 00:47:28 +02:00
|
|
|
#=================================================
|
2023-11-15 11:22:56 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2022-07-22 00:47:28 +02:00
|
|
|
#=================================================
|
2023-11-15 11:22:56 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2022-07-22 00:47:28 +02:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2020-11-24 18:00:33 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2018-06-25 05:57:41 +02:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2020-11-24 18:00:33 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-06-25 05:57:41 +02:00
|
|
|
ynh_remove_fpm_config
|
2017-02-26 18:10:35 +01:00
|
|
|
|
2022-07-22 00:47:28 +02:00
|
|
|
# Remove the dedicated Fail2Ban config
|
2018-09-27 22:44:34 +02:00
|
|
|
ynh_remove_fail2ban_config
|
|
|
|
|
2019-04-05 12:29:32 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-11 14:06:42 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|