2014-01-13 13:50:38 +01:00
|
|
|
#!/bin/bash
|
2016-05-14 18:34:34 +02:00
|
|
|
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
2022-07-28 23:32:49 +02:00
|
|
|
# GENERIC START
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-02-13 21:13:59 +01:00
|
|
|
source _common.sh
|
2017-09-28 18:02:10 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2022-07-28 23:32:49 +02:00
|
|
|
# REMOVE NGINX CONFIGURATION
|
2017-09-28 18:02:10 +02:00
|
|
|
#=================================================
|
2020-10-15 09:07:23 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=2
|
2017-09-28 18:02:10 +02:00
|
|
|
|
2020-10-15 09:07:23 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2017-09-28 18:02:10 +02:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2020-10-15 09:07:23 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2017-09-28 18:02:10 +02:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2022-07-28 23:32:49 +02:00
|
|
|
# Remove a cron file
|
2020-03-03 20:23:09 +01:00
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
|
|
|
|
2019-02-17 20:55:13 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-11-04 20:15:49 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|