2015-11-11 18:03:16 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-11-11 18:03:16 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
source _common.sh
|
2017-03-29 19:25:52 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-01-20 08:52:18 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2018-09-03 23:31:52 +02:00
|
|
|
|
2022-10-06 00:00:31 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2018-09-03 23:31:52 +02:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-01-20 08:52:18 +01:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=2
|
2017-03-10 22:10:45 +01:00
|
|
|
|
2022-10-06 00:00:31 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-09-03 23:31:52 +02:00
|
|
|
ynh_remove_fpm_config
|
2018-09-03 23:39:42 +02:00
|
|
|
|
2022-10-06 00:00:31 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE VARIOUS FILES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing various files..." --weight=1
|
|
|
|
|
|
|
|
# Remove a cron file
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
|
|
|
|
2019-10-26 15:25:19 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|