1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/firefly-iii_ynh.git synced 2024-09-03 18:36:13 +02:00
firefly-iii_ynh/scripts/remove

23 lines
573 B
Text
Raw Normal View History

2018-06-17 00:50:26 +02:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE SYSTEM CONFIGURATIONS
2018-06-17 00:50:26 +02:00
#=================================================
ynh_script_progression --message="Removing configurations related to $app..."
2018-06-17 00:50:26 +02:00
ynh_remove_nginx_config
ynh_remove_fpm_config
2018-06-17 00:50:26 +02:00
# Remove a cron file
ynh_secure_remove --file="/etc/cron.d/$app"
#=================================================
# END OF SCRIPT
#=================================================
2022-07-19 02:18:21 +02:00
ynh_script_progression --message="Removal of $app completed"