1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ulogger_ynh.git synced 2024-10-01 13:34:45 +02:00
ulogger_ynh/scripts/remove

28 lines
771 B
Text
Raw Normal View History

2017-10-22 01:11:59 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2021-01-26 09:41:19 +01:00
ynh_script_progression --message="Removing NGINX web server configuration"
2017-10-22 01:11:59 +02:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2018-06-04 14:51:37 +02:00
# Remove the dedicated php-fpm config
ynh_remove_fpm_config
2019-04-05 20:58:52 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-01-26 09:41:19 +01:00
ynh_script_progression --message="Removal of $app completed"