2015-02-26 23:40:40 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-05 13:34:17 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-02-26 23:40:40 +01:00
|
|
|
|
2020-11-05 13:34:17 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-02-26 23:40:40 +01:00
|
|
|
|
2020-11-26 17:57:28 +01:00
|
|
|
#=================================================
|
2023-10-03 12:10:16 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2020-11-26 17:57:28 +01:00
|
|
|
#=================================================
|
2023-10-03 12:10:16 +02:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2020-11-26 17:57:28 +01:00
|
|
|
|
2022-06-03 21:36:50 +02:00
|
|
|
ynh_remove_nginx_config
|
2020-11-26 17:57:28 +01:00
|
|
|
|
2022-06-03 21:36:50 +02:00
|
|
|
ynh_remove_fpm_config
|
2020-11-05 13:34:17 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-06-03 21:36:50 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|