2018-04-29 13:00:03 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2020-03-29 05:02:23 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-04-29 13:00:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-03-16 13:58:59 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2018-04-29 13:00:03 +02:00
|
|
|
#=================================================
|
2024-03-16 13:58:59 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2018-04-29 13:00:03 +02:00
|
|
|
|
2021-05-15 19:19:38 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2018-04-29 13:00:03 +02:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2021-05-15 19:19:38 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2020-03-31 17:18:55 +02:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2022-07-29 01:12:30 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE VARIOUS FILES
|
2020-08-16 12:13:44 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove a cron file
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
|
|
|
|
2019-06-14 18:57:58 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-19 18:03:19 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|