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

40 lines
1.1 KiB
Text
Raw Normal View History

2022-02-28 23:39:48 +01:00
#!/bin/bash
2022-03-01 20:18:50 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-02-28 23:39:48 +01:00
2022-03-01 20:18:50 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2022-02-28 23:39:48 +01:00
2022-03-01 20:18:50 +01:00
#=================================================
2024-03-22 15:16:28 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2022-03-01 20:18:50 +01:00
#=================================================
2024-01-10 12:50:39 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2022-03-01 20:18:50 +01:00
2024-03-22 15:16:28 +01:00
if ynh_exec_warn_less yunohost service status "$app" >/dev/null; then
ynh_script_progression --message="Removing $app service integration..."
yunohost service remove "$app"
2022-03-01 20:18:50 +01:00
fi
# Remove the dedicated systemd config
ynh_remove_systemd_config
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2024-03-22 15:16:28 +01:00
ynh_remove_logrotate
2022-03-02 04:02:38 +01:00
# Remove the log files
ynh_secure_remove --file="/var/log/$app"
2024-03-22 17:45:41 +01:00
# Remove additional databases
ynh_psql_drop_db "${db_name}tenant"
ynh_psql_drop_db "${db_name}olap"
2022-03-01 20:18:50 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed"