2023-10-03 17:16:59 +02:00
|
|
|
#!/bin/bash
|
2022-02-16 10:25:34 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2023-10-03 17:16:59 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2022-02-16 10:25:34 +01:00
|
|
|
#=================================================
|
2023-10-03 17:16:59 +02:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2022-02-16 10:25:34 +01:00
|
|
|
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-13 01:21:45 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|