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/restore

71 lines
2.4 KiB
Text
Raw Normal View History

2019-08-05 01:29:15 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-04-10 01:38:20 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-08-05 01:29:15 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
2021-04-10 01:38:20 +02:00
# RESTORE THE APP MAIN DIR
2019-08-05 01:29:15 +02:00
#=================================================
2021-04-10 01:38:20 +02:00
ynh_script_progression --message="Restoring the app main directory..."
2019-08-05 01:29:15 +02:00
2023-06-22 09:09:24 +02:00
ynh_restore_file --origin_path="$install_dir"
2021-04-10 01:38:20 +02:00
2023-06-22 09:09:24 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2019-08-05 01:29:15 +02:00
2022-01-14 21:31:33 +01:00
#=================================================
# RESTORE THE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Restoring the data directory..."
2023-06-22 09:09:24 +02:00
ynh_restore_file --origin_path="$data_dir" --not_mandatory
2022-01-14 21:31:33 +01:00
2023-06-22 09:09:24 +02:00
chown -R $app:$app "$data_dir"
2022-01-14 21:31:33 +01:00
2019-08-05 01:29:15 +02:00
#=================================================
2022-07-17 05:57:09 +02:00
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..."
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-08-05 01:29:15 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2020-12-01 22:04:05 +01:00
systemctl enable $app.service --quiet
2019-08-05 01:29:15 +02:00
2022-07-17 05:57:09 +02:00
mkdir -p "/var/log/$app"
chown -R $app:$app "/var/log/$app"
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2023-09-15 14:39:06 +02:00
# Create a dedicated Fail2Ban config
mkdir -p "/var/log/$app"
touch "/var/log/$app/$app.log"
chown -R $app:$app "/var/log/$app"
ynh_restore_file --origin_path="/etc/fail2ban/jail.d/$app.conf"
ynh_restore_file --origin_path="/etc/fail2ban/filter.d/$app.conf"
ynh_systemd_action --action=restart --service_name=fail2ban
2019-08-05 01:29:15 +02:00
2021-04-30 13:49:31 +02:00
yunohost service add $app --description="$app daemon for vaultwarden" --log="/var/log/$app/$app.log"
2019-08-05 01:29:15 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-12-01 22:04:05 +01:00
ynh_script_progression --message="Starting a systemd service..."
2019-12-29 23:23:32 +01:00
2020-01-21 23:03:55 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Rocket has launched from" --length=100
2019-08-05 01:29:15 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2020-12-01 22:04:05 +01:00
ynh_script_progression --message="Restoration completed for $app"