2020-11-15 21:54:22 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2023-06-05 11:03:43 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2020-11-15 21:54:22 +01:00
|
|
|
#=================================================
|
2023-06-05 11:03:43 +02:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2020-11-15 21:54:22 +01:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2021-12-22 08:30:36 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2020-11-15 21:54:22 +01:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
|
|
|
# Remove a cron file
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed"
|