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

28 lines
799 B
Text
Raw Normal View History

2021-10-26 12:00:04 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2023-09-26 21:57:46 +02:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2021-10-26 12:00:04 +02:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
#=================================================
# END OF SCRIPT
#=================================================
2021-10-28 16:31:34 +02:00
ynh_script_progression --message="Removal of $app completed" --last