2018-11-18 16:00:35 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-04-18 22:17:43 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2018-11-21 00:22:08 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2019-04-18 22:17:43 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-06-08 03:24:51 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..."
|
2019-04-18 22:17:43 +02:00
|
|
|
|
2022-06-08 03:24:51 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2019-04-13 15:11:19 +02:00
|
|
|
ynh_remove_nginx_config
|
2019-04-18 22:17:43 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-06-08 03:24:51 +02:00
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
2019-04-18 22:17:43 +02:00
|
|
|
#=================================================
|
2022-06-08 03:24:51 +02:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration..."
|
|
|
|
|
|
|
|
# Remove the dedicated PHP-FPM config
|
|
|
|
ynh_remove_fpm_config
|
2019-05-19 18:41:09 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-06-08 03:24:51 +02:00
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE VARIOUS FILES
|
2019-05-19 18:41:09 +02:00
|
|
|
#=================================================
|
2022-06-08 03:24:51 +02:00
|
|
|
ynh_script_progression --message="Removing various files..."
|
2019-05-19 18:41:09 +02:00
|
|
|
|
2022-06-08 03:24:51 +02:00
|
|
|
# Remove a cron file
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
|
|
|
|
|
|
|
ynh_replace_string --match_string="devnull:/dev/null" --replace_string="" --target_file="/etc/aliases"
|
|
|
|
newaliases
|
|
|
|
|
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/hooks/conf_regen/98-postfix_emailpoubelle"
|
|
|
|
yunohost tools regen-conf postfix
|
|
|
|
ynh_systemd_action --service_name=postfix --action=reload
|
2018-11-25 16:40:00 +01:00
|
|
|
|
2022-06-08 03:24:51 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-05-20 10:21:06 +02:00
|
|
|
|
2020-11-01 16:49:03 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|