2014-10-20 18:55:53 +02:00
|
|
|
#!/bin/bash
|
2016-04-26 15:30:49 +02:00
|
|
|
|
2020-11-05 20:47:23 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2014-10-20 18:55:53 +02:00
|
|
|
|
2016-06-14 14:11:00 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-18 22:31:45 +02:00
|
|
|
|
2020-11-05 20:47:23 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-05 20:59:46 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2020-11-05 20:47:23 +01:00
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
# Remove the dedicated NGINX config
|
2020-11-05 20:47:23 +01:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2014-10-20 18:55:53 +02:00
|
|
|
|
2020-11-05 21:05:02 +01:00
|
|
|
ynh_script_progression --message="Removal of Laverna completed" --last
|