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

100 lines
3.4 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
2020-04-16 23:33:43 +02:00
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2020-04-16 23:33:43 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2020-04-16 23:33:43 +02:00
#=================================================
# LOAD SETTINGS
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Loading settings..."
2020-04-16 23:33:43 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
2021-01-21 13:26:13 +01:00
path_url=$(ynh_app_setting_get --app $app --key path)
2020-04-16 23:33:43 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
#=================================================
# CHECK IF THE APP CAN BE RESTORED
2020-04-16 23:33:43 +02:00
#=================================================
2023-01-22 10:54:32 +01:00
2020-04-16 23:33:43 +02:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
2023-01-22 10:54:32 +01:00
ynh_script_progression --message="Restoring files..." --weight=5
2018-09-05 22:35:25 +02:00
# Restore all config and data
ynh_restore
2020-04-16 23:33:43 +02:00
#=================================================
# RECREATE THE DEDICATED USER
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Recreating the dedicated system user..."
2023-01-22 10:54:32 +01:00
2020-04-16 23:33:43 +02:00
ynh_system_user_create --username="$app"
usermod --append --groups www-data "$app"
2020-04-16 23:33:43 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
ynh_script_progression --message="Restoring user rights..."
set_permissions
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Reinstalling dependencies..." --weight=5
2020-04-21 01:27:01 +02:00
# Define and install dependencies
2020-04-16 23:33:43 +02:00
ynh_install_app_dependencies $pkg_dependencies
2020-04-16 23:33:43 +02:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
ynh_script_progression --message="Restoring database..." --weight=3
2020-04-21 01:27:01 +02:00
2020-04-16 23:33:43 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2018-07-05 23:21:03 +02:00
2020-04-16 23:33:43 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Reloading services..." --weight=3
2023-01-22 10:54:32 +01:00
systemctl daemon-reload
2022-08-21 09:12:56 +02:00
systemctl enable --quiet $app.service
yunohost service add "$app"
2020-04-21 01:27:01 +02:00
2020-04-16 23:33:43 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND UWSGI
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Starting pgadmin services..." --weight=3
2023-01-22 10:54:32 +01:00
ynh_systemd_action --service_name "$app.service" \
--line_match "Booting worker with pid" --log_path "systemd"
ynh_systemd_action --service_name=nginx --action=reload -t 20
ynh_script_progression --message="Restoration completed for $app" --last