2015-02-16 23:19:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-02-16 23:19:37 +01:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-02-16 23:19:37 +01:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-07-19 08:38:46 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2017-07-18 12:21:08 +02:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2021-07-19 08:38:46 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-06-05 23:17:03 +02:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2020-04-09 10:42:49 +02:00
|
|
|
# Remove the app-specific logrotate config
|
2023-08-21 10:13:29 +02:00
|
|
|
#ynh_remove_logrotate
|
|
|
|
|
|
|
|
ynh_remove_fail2ban_config
|
2020-04-09 10:42:49 +02:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
# Remove a cron file
|
2020-04-09 10:42:49 +02:00
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
2018-06-05 23:17:03 +02:00
|
|
|
|
2019-03-12 11:37:22 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-19 08:54:40 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|