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

141 lines
4.8 KiB
Text
Raw Normal View History

2021-04-01 16:11:07 +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
#=================================================
2021-10-24 22:01:02 +02:00
ynh_clean_setup() {
2021-04-01 16:11:07 +02:00
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-04-01 16:11:07 +02:00
2021-10-24 22:01:02 +02:00
load_installation_settings
2021-04-01 16:11:07 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2021-04-01 16:11:07 +02:00
2021-10-24 22:01:02 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url ||
ynh_die --message="Path not available: ${domain}${path_url}"
test ! -d $final_path ||
ynh_die --message="There is already a directory: $final_path "
test ! -d $data_path ||
ynh_die --message="There is already a directory: $data_path "
2021-04-01 16:11:07 +02:00
#=================================================
# 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
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2021-04-01 16:11:07 +02:00
ynh_restore_file --origin_path="$final_path"
#=================================================
2021-04-07 07:19:02 +02:00
# RESTORE THE APP DATA DIR
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Restoring the app data directory..." --weight=30
2021-04-01 16:11:07 +02:00
2021-04-07 07:19:02 +02:00
ynh_restore_file --origin_path="$data_path" --not_mandatory
2021-04-01 16:11:07 +02:00
2021-04-07 07:19:02 +02:00
if [ ! -d "$data_path" ]; then
add_languagetool_config
fi
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
# RECREATE THE DEDICATED USER
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
2021-04-01 16:11:07 +02:00
2021-04-07 07:19:02 +02:00
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
# RESTORE USER RIGHTS
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
# Restore permissions on app files
set_permissions
2021-04-01 16:11:07 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2021-04-01 16:11:07 +02:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# RESTORE SYSTEMD
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2021-04-01 16:11:07 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-04-01 16:11:07 +02:00
2021-04-07 07:19:02 +02:00
yunohost service add $app --description="Multilingual grammar, style, and spell checker" --log="/var/log/$app/$app.log"
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
# RESTORE LOG FILES
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
ynh_restore_file --origin_path="/var/log/$app"
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
# START SYSTEMD SERVICE
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-04-01 16:11:07 +02:00
2021-04-07 07:19:02 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
2021-04-01 16:11:07 +02:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================
2021-04-07 07:19:02 +02:00
# RELOAD NGINX
2021-04-01 16:11:07 +02:00
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-04-01 16:11:07 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-04-07 07:19:02 +02:00
ynh_script_progression --message="Restoration completed for $app" --last