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

148 lines
5 KiB
Text
Raw Normal View History

2018-08-26 19:04:08 +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
2018-08-26 19:04:08 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
true
}
2018-08-26 19:04:08 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2021-04-09 23:34:14 +02:00
ynh_script_progression --message="Loading installation settings..."
2018-08-26 19:04:08 +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)
2018-08-26 19:04:08 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
ynh_script_progression --message="Validating restoration parameters..."
2018-08-26 19:04:08 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
2018-08-26 19:04:08 +02:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
2018-08-26 19:04:08 +02:00
#=================================================
# ACTIVATE MAINTENANCE MODE
#=================================================
ynh_maintenance_mode_ON
#=================================================
2019-02-14 19:37:43 +01:00
# STANDARD RESTORATION STEPS
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:37:43 +01:00
# RESTORE THE NGINX CONFIGURATION
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..."
2018-08-26 19:04:08 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:37:43 +01:00
# RESTORE THE APP MAIN DIR
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Restoring the app main directory..."
2018-08-26 19:04:08 +02:00
ynh_restore_file --origin_path="$final_path"
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:37:43 +01:00
# RECREATE THE DEDICATED USER
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Recreating the dedicated system user..."
2018-08-26 19:04:08 +02:00
2019-02-14 19:37:43 +01:00
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app
2018-08-26 19:04:08 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
ynh_script_progression --message="Restoring user rights..."
2018-08-26 19:04:08 +02:00
2019-02-14 19:37:43 +01:00
# Restore permissions on app files
2018-08-28 12:47:16 +02:00
chown -R $app:root $final_path
2018-08-26 19:04:08 +02:00
#=================================================
# SPECIFIC RESTORATION
2018-08-26 19:04:08 +02:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Reinstalling dependencies..."
2018-08-26 19:04:08 +02:00
2019-02-14 19:37:43 +01:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
2018-08-26 19:04:08 +02:00
#=================================================
# INSTALL PYTHON DEPENDENCIES
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Installing Python dependencies..."
2018-08-26 19:04:08 +02:00
pushd $final_path
python3 -m venv venv
venv/bin/pip install --upgrade pip
venv/bin/pip install -r requirements-frozen.txt
#Fix current websocket version error (2019-02-14)
venv/bin/pip uninstall -y websockets
venv/bin/pip install 'websockets>=6.0,<7.0'
popd
2018-08-26 19:04:08 +02:00
#=================================================
# RESTORE SYSTEMD
2019-02-14 19:37:43 +01:00
#=================================================
ynh_script_progression --message="Restoring the systemd configuration..."
2019-02-14 19:37:43 +01:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
2019-02-14 19:37:43 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
2018-08-26 19:04:08 +02:00
yunohost service add $app --description="$app daemon for YunoRunner"
2018-08-26 19:04:08 +02:00
#=================================================
# START SYSTEMD SERVICE
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Starting a systemd service..."
2018-08-26 19:04:08 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Started YunoRunner CI"
2018-08-26 19:04:08 +02:00
#=================================================
2018-08-26 19:36:20 +02:00
# DEACTIVE MAINTENANCE MODE
2018-08-26 19:04:08 +02:00
#=================================================
2018-08-26 19:36:20 +02:00
ynh_maintenance_mode_OFF
2019-02-14 19:37:43 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading NGINX web server..."
ynh_systemd_action --service_name=nginx --action=reload
2019-02-14 19:37:43 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app"