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

64 lines
2 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
#=================================================
# STANDARD REMOVE
#=================================================
2019-12-29 23:23:32 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
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
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2020-12-01 22:04:05 +01:00
ynh_script_progression --message="Stopping and removing the systemd service..."
2019-08-05 01:29:15 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-12-01 22:04:05 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..."
2019-08-05 01:29:15 +02:00
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
#=================================================
# REMOVE FAIL2BAN CONFIGURATION
#=================================================
2021-07-29 20:05:36 +02:00
ynh_script_progression --message="Removing Fail2Ban configuration..."
2019-08-05 01:29:15 +02:00
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
#=================================================
# SPECIFIC REMOVE
#=================================================
2020-12-01 22:04:05 +01:00
# REMOVE VARIOUS FILES
2019-08-05 01:29:15 +02:00
#=================================================
2020-12-01 22:04:05 +01:00
ynh_script_progression --message="Removing various files..."
2019-08-05 01:29:15 +02:00
# 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
#=================================================
# END OF SCRIPT
#=================================================
2020-12-01 22:04:05 +01:00
ynh_script_progression --message="Removal of $app completed"