2014-05-07 02:54:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2020-06-10 15:24:30 +02:00
|
|
|
|
2019-02-27 23:52:47 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2024-04-12 10:35:52 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
2024-04-12 10:35:52 +02:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2020-12-16 22:30:16 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2019-02-27 23:52:47 +01:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2020-12-16 22:30:16 +01:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2019-02-27 23:52:47 +01:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2020-06-10 15:24:30 +02:00
|
|
|
|
2019-07-27 22:09:37 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|