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

46 lines
1.3 KiB
Text
Raw Normal View History

2019-08-05 01:29:15 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2023-09-15 15:29:47 +02:00
# REMOVE SYSTEM CONFIGURATIONS
2019-08-05 01:29:15 +02:00
#=================================================
2023-09-15 15:29:47 +02:00
# REMOVE SYSTEMD SERVICE
2019-08-05 01:29:15 +02:00
#=================================================
2023-09-15 15:29:47 +02:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2019-08-05 01:29:15 +02:00
2021-04-10 01:38:20 +02:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2019-12-29 23:23:32 +01:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
2019-08-05 01:29:15 +02:00
then
2020-12-01 22:04:05 +01:00
ynh_script_progression --message="Removing $app service integration..."
2019-12-29 23:23:32 +01:00
yunohost service remove $app
2019-08-05 01:29:15 +02:00
fi
# Remove the dedicated systemd config
ynh_remove_systemd_config
2020-09-21 09:02:06 +02:00
# Remove the dedicated NGINX config
2019-08-05 01:29:15 +02:00
ynh_remove_nginx_config
2020-09-21 09:02:06 +02:00
# Remove the dedicated Fail2Ban config
2019-08-05 01:29:15 +02:00
ynh_remove_fail2ban_config
# Remove the log files
2020-01-12 21:42:15 +01:00
ynh_secure_remove --file="/var/log/$app"
2019-08-05 01:29:15 +02:00
2023-09-15 14:39:06 +02:00
# Remove the config file
ynh_secure_remove --file="/$data_dir/config.json"
2019-08-05 01:29:15 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-01 22:04:05 +01:00
ynh_script_progression --message="Removal of $app completed"