2016-06-27 10:27:19 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-13 23:38:00 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-06-27 10:27:19 +02:00
|
|
|
|
2020-10-13 23:38:00 +02:00
|
|
|
source _common.sh
|
2016-06-27 10:27:19 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-10-13 23:38:00 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-06-28 08:47:54 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2020-10-13 23:38:00 +02:00
|
|
|
|
2022-06-22 00:42:37 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2020-10-13 23:38:00 +02:00
|
|
|
ynh_remove_nginx_config
|
2016-06-27 10:27:19 +02:00
|
|
|
|
2020-10-13 23:38:00 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2016-06-27 10:27:19 +02:00
|
|
|
|
2020-10-13 23:38:00 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|