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

33 lines
937 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
#=================================================
2023-06-05 11:03:43 +02:00
# REMOVE SYSTEM CONFIGURATIONS
2020-11-15 21:54:22 +01:00
#=================================================
2023-06-05 11:03:43 +02:00
# REMOVE SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
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"