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

145 lines
5.1 KiB
Text
Raw Normal View History

2019-08-05 01:29:15 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
ynh_clean_check_starting
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Loading settings..." --weight=1
2019-08-05 01:29:15 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-12-19 17:35:44 +01:00
domain=$(ynh_app_setting_get --app="$app" --key=domain)
path_url=$(ynh_app_setting_get --app="$app" --key=path)
final_path=$(ynh_app_setting_get --app="$app" --key=final_path)
2019-08-05 01:29:15 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2019-08-05 01:29:15 +02:00
2019-12-19 17:35:44 +01:00
ynh_webpath_available --domain="$domain" --path_url="$path_url" \
2019-08-05 01:29:15 +02:00
|| ynh_die --message="Path not available: ${domain}${path_url}"
2019-12-19 17:35:44 +01:00
test ! -d "$final_path" \
2019-08-05 01:29:15 +02:00
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2019-08-05 01:29:15 +02:00
ynh_restore_file --origin_path="$final_path"
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Recreating the dedicated system user..." --weight=3
2019-08-05 01:29:15 +02:00
# Create the dedicated user (if not existing)
2019-12-19 17:35:44 +01:00
ynh_system_user_create --username="$app" --home_dir="$final_path"
2019-08-05 01:29:15 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
# Restore permissions on app files
2019-12-19 17:35:44 +01:00
chown -R "$app":"$app" "$final_path"
2019-08-05 01:29:15 +02:00
mkdir -p "/var/log/$app"
2019-12-19 17:35:44 +01:00
chown -R "$app":"$app" /var/log/"$app"
2019-08-05 01:29:15 +02:00
#=================================================
# RESTORE FAIL2BAN CONFIGURATION
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Restoring the fail2ban configuration..." --weight=8
2019-08-05 01:29:15 +02:00
2019-08-06 02:16:16 +02:00
# Create a dedicated fail2ban config
mkdir -p "/var/log/$app"
chown -R "$app":"$app" "/var/log/$app"
2019-12-19 17:35:44 +01:00
touch /var/log/"$app"/"$app".log
2019-08-06 02:16:16 +02:00
2019-08-05 01:29:15 +02:00
ynh_restore_file "/etc/fail2ban/jail.d/$app.conf"
ynh_restore_file "/etc/fail2ban/filter.d/$app.conf"
ynh_systemd_action --action=restart --service_name=fail2ban
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=8
2019-08-05 01:29:15 +02:00
# Define and install dependencies
2019-12-19 17:35:44 +01:00
ynh_install_app_dependencies "$pkg_dependencies"
2019-08-05 01:29:15 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2019-08-05 01:29:15 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2019-12-19 17:35:44 +01:00
systemctl enable "$app".service
2019-08-05 01:29:15 +02:00
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
2019-12-19 17:35:44 +01:00
yunohost service add "$app" --description "$app daemon for Bitwarden" --log "/var/log/$app/$app.log"
2019-08-05 01:29:15 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=2
2019-08-05 01:29:15 +02:00
2019-12-19 17:35:44 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="systemd" --line_match="Rocket has launched from"
if [ "${PACKAGE_CHECK_EXEC:-0}" -eq 1 ]; then
ynh_systemd_action --service_name="$app" --action="restart" --log_path="systemd" --line_match="Rocket has launched from"
2019-12-28 19:11:03 +01:00
sleep 60
2019-10-16 00:19:52 +02:00
fi
2019-08-05 01:29:15 +02:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Reloading nginx web server..." --weight=1
2019-08-05 01:29:15 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2019-08-12 22:16:54 +02:00
ynh_script_progression --message="Restoration completed for $app" --last