2018-10-30 10:25:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-07-10 18:27:01 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2020-09-13 17:56:50 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2018-10-30 10:25:13 +01:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2020-09-13 17:56:50 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-10-30 10:25:13 +01:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
|
|
|
# Remove a cron file
|
2020-05-31 00:00:08 +02:00
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2019-07-01 22:17:06 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-07-01 23:12:24 +02:00
|
|
|
|
2022-04-27 14:52:20 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|