1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/blogotext_ynh.git synced 2024-09-03 18:15:52 +02:00
blogotext_ynh/scripts/remove

28 lines
771 B
Text
Raw Normal View History

2018-01-24 20:18:53 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-12-07 11:54:33 +01:00
ynh_script_progression --message="Removing NGINX web server configuration"
2018-01-24 20:18:53 +01:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2020-12-07 11:54:33 +01:00
# Remove the dedicated PHP-FPM config
2018-01-24 20:18:53 +01:00
ynh_remove_fpm_config
2019-03-09 10:14:08 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-07 11:54:33 +01:00
ynh_script_progression --message="Removal of $app completed"