2013-11-29 12:49:27 +01:00
|
|
|
#!/bin/bash
|
2014-05-29 12:09:07 +02:00
|
|
|
|
2020-10-20 23:45:55 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2017-03-08 23:32:42 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-10-20 23:45:55 +02:00
|
|
|
#=================================================
|
2024-01-07 13:10:56 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2020-10-20 23:45:55 +02:00
|
|
|
#=================================================
|
2024-01-07 13:10:56 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2020-10-20 23:45:55 +02:00
|
|
|
|
2020-11-22 22:17:57 +01:00
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
2020-10-20 23:45:55 +02:00
|
|
|
|
2021-07-21 14:51:44 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2020-10-20 23:45:55 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-22 22:17:57 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|