1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lufi_ynh.git synced 2024-09-03 19:36:28 +02:00
lufi_ynh/scripts/restore

148 lines
5.3 KiB
Text
Raw Normal View History

2017-04-01 18:16:18 +02:00
#!/bin/bash
2019-03-03 18:04:55 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-04-01 18:16:18 +02:00
2020-05-26 01:58:07 +02:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-03-03 18:04:55 +01:00
source ../settings/scripts/_common.sh
2017-04-01 18:16:18 +02:00
source /usr/share/yunohost/helpers
2019-03-03 18:04:55 +01:00
#=================================================
# 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
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Loading settings..."
2019-03-03 18:04:55 +01:00
2017-04-01 18:16:18 +02:00
app=$YNH_APP_INSTANCE_NAME
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)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
2019-03-03 18:04:55 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2019-03-03 18:04:55 +01:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
2019-03-03 18:04:55 +01:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
2019-03-03 18:04:55 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2020-11-01 18:24:02 +01:00
ynh_script_progression --message="Restoring NGINX configuration..."
2019-03-03 18:04:55 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-03-03 18:04:55 +01:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Recreating the dedicated system user..."
2019-03-03 18:04:55 +01:00
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app
2019-03-03 18:04:55 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression --message="Restoring the app main directory..."
ynh_restore_file --origin_path="$final_path"
2019-03-03 18:04:55 +01:00
#=================================================
# RESTORE USER RIGHTS
2019-03-03 18:04:55 +01:00
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Restoring user rights..."
2019-03-03 18:04:55 +01:00
# Restore permissions on app files
chown -R $app:$app $final_path
2019-03-03 18:04:55 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
2019-03-03 18:04:55 +01:00
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Reinstalling dependencies..."
2019-03-03 18:04:55 +01:00
# Define and install dependencies
2021-01-23 17:06:02 +01:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2020-05-26 01:58:07 +02:00
2019-03-03 18:04:55 +01:00
#=================================================
# RESTORE THE POSTGRESQL DATABASE
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Restoring the PostregSQL database..."
ynh_psql_test_if_first_run
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
2019-03-03 18:04:55 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Restoring the systemd configuration..."
2019-03-03 18:04:55 +01:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2020-12-13 21:16:52 +01:00
systemctl enable $app.service --quiet
2019-03-03 18:04:55 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2019-03-03 18:04:55 +01:00
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2019-03-03 18:04:55 +01:00
2020-12-13 21:16:52 +01:00
yunohost service add $app --description="Lufi service" --log="$final_path/log/production.log"
2019-03-03 18:04:55 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Starting a systemd service..."
ynh_systemd_action --service_name=$app --action="start" --log_path="$final_path/log/production.log" --line_match="Creating process id file"
#=================================================
# RESTORE THE CRON FILE
2019-03-03 18:04:55 +01:00
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Restoring the cron file..."
2019-03-03 18:04:55 +01:00
ynh_restore_file --origin_path="/etc/cron.d/$app"
2019-03-03 18:04:55 +01:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
2019-03-03 18:04:55 +01:00
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Restoring the logrotate configuration..."
2019-03-03 18:04:55 +01:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2019-03-03 18:04:55 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2020-11-01 18:24:02 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-03-03 18:04:55 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2019-03-03 18:04:55 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-05-30 16:34:01 +02:00
ynh_script_progression --message="Restoration completed for $app"