2016-06-02 16:10:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
2022-03-31 19:39:38 +02:00
|
|
|
# GENERIC START
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
source _common.sh
|
2018-08-05 02:02:55 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
2023-02-17 22:45:03 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
2023-02-17 22:45:03 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2020-12-02 12:13:13 +01:00
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2021-05-26 12:16:06 +02:00
|
|
|
ynh_remove_nginx_config
|
2020-12-02 12:13:13 +01:00
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2020-07-08 09:49:14 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-06-24 18:59:21 +02:00
|
|
|
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|