2015-05-31 13:46:25 +02:00
|
|
|
#!/bin/bash
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-06-15 23:45:27 +02:00
|
|
|
# GENERIC START
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2017-02-02 03:37:01 +01:00
|
|
|
source _common.sh
|
2021-07-12 13:54:37 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2024-01-23 16:40:33 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2024-01-23 16:40:33 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2017-02-02 03:37:01 +01:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_remove_nginx_config
|
2017-02-05 22:45:48 +01:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_remove_fpm_config
|
2017-02-05 22:45:48 +01:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|