2016-08-21 01:03:46 +02:00
|
|
|
#!/bin/bash
|
2021-02-17 23:50:49 +01:00
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2024-08-30 23:32:24 +02:00
|
|
|
ynh_script_progression "Removing system configurations related to $app..."
|
2021-02-17 23:50:49 +01:00
|
|
|
|
|
|
|
# Remove the dedicated NGINX config
|
2024-08-30 23:32:24 +02:00
|
|
|
ynh_config_remove_nginx
|
2021-02-17 23:50:49 +01:00
|
|
|
|
|
|
|
# Remove the dedicated PHP-FPM config
|
2024-08-30 23:32:24 +02:00
|
|
|
ynh_config_remove_phpfpm
|
2021-02-17 23:50:49 +01:00
|
|
|
|
|
|
|
# Remove a cron file
|
2024-08-30 23:32:24 +02:00
|
|
|
ynh_safe_rm "/etc/cron.d/$app"
|
2016-08-21 01:03:46 +02:00
|
|
|
|
2021-02-17 23:50:49 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2016-08-21 01:03:46 +02:00
|
|
|
|
2024-08-30 23:32:24 +02:00
|
|
|
ynh_script_progression "Removal of $app completed"
|