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

26 lines
699 B
Text
Raw Normal View History

2023-12-11 17:56:26 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2023-12-17 18:45:44 +01:00
# REMOVE SUPERVISOR & SYSTEMD SERVICE
2023-12-11 17:56:26 +01:00
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..."
2023-12-17 18:45:44 +01:00
supervisorctl stop ${app}
supervisorctl remove ${app}
ynh_secure_remove "/etc/supervisor/conf.d/${app}.conf"
supervisorctl reread
2023-12-11 17:56:26 +01:00
ynh_remove_nginx_config
ynh_remove_logrotate
ynh_secure_remove --file="/var/log/$app"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last