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

31 lines
840 B
Text
Raw Normal View History

2020-11-15 21:54:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2021-07-26 11:51:28 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..."
2020-11-15 21:54:22 +01:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2021-12-22 08:30:36 +01:00
# Remove the dedicated PHP-FPM config
2020-11-15 21:54:22 +01:00
ynh_remove_fpm_config
# Remove a cron file
ynh_secure_remove --file="/etc/cron.d/$app"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed"