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

31 lines
868 B
Text
Raw Normal View History

#!/bin/bash
2019-01-27 23:36:59 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-09 23:46:07 +01:00
source _common.sh
2020-04-17 14:38:01 +02:00
source /usr/share/yunohost/helpers
2019-01-27 23:36:59 +01:00
#=================================================
2023-11-12 09:42:13 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2019-01-27 23:36:59 +01:00
#=================================================
2023-11-12 09:42:13 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2019-01-27 23:36:59 +01:00
2021-05-15 16:10:33 +02:00
# Remove the dedicated NGINX config
2019-01-27 23:36:59 +01:00
ynh_remove_nginx_config
2021-05-15 16:10:33 +02:00
# Remove the dedicated PHP-FPM config
2019-01-27 23:36:59 +01:00
ynh_remove_fpm_config
2021-05-15 16:10:33 +02:00
# Remove the dedicated Fail2Ban config
ynh_remove_fail2ban_config
2020-04-17 14:38:01 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last