2015-06-18 23:40:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-06-18 23:40:52 +02:00
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
source _common.sh
|
2016-12-24 12:38:35 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
2024-05-03 12:03:47 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
2024-05-03 12:03:47 +02:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2020-06-14 06:25:54 +02:00
|
|
|
|
2020-11-18 14:29:49 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2020-06-14 06:25:54 +02:00
|
|
|
ynh_remove_nginx_config
|
2016-12-24 12:38:35 +01:00
|
|
|
|
2020-11-18 14:29:49 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2020-06-14 06:25:54 +02:00
|
|
|
ynh_remove_fpm_config
|
2015-06-18 23:40:52 +02:00
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2015-06-18 23:40:52 +02:00
|
|
|
|
2020-06-14 06:25:54 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|