2014-08-18 18:37:19 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2014-08-18 18:37:19 +02:00
|
|
|
|
2020-05-28 02:23:15 +02:00
|
|
|
source _common.sh
|
2017-09-28 18:02:52 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-12-12 17:18:50 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=2
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2020-12-12 17:18:50 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2017-09-28 18:02:52 +02:00
|
|
|
ynh_remove_nginx_config
|
2019-02-17 20:54:53 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-05-28 02:23:15 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|