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

161 lines
5.7 KiB
Text
Raw Normal View History

2018-04-07 12:02:34 +02:00
#!/bin/bash
#=================================================
# GENERIC START
2018-04-07 12:02:34 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-03-07 01:39:02 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2018-04-07 12:02:34 +02:00
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
ynh_clean_check_starting
}
2018-04-07 12:02:34 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2021-04-10 01:48:01 +02:00
ynh_script_progression --message="Loading installation settings..."
2018-04-07 12:02:34 +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
2018-04-07 12:02:34 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2018-04-07 12:02:34 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
2018-04-07 12:02:34 +02:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
2018-04-07 12:02:34 +02:00
2021-03-08 21:40:57 +01:00
# Check memory requirements
check_memory_requirements
2018-04-07 12:02:34 +02:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2021-03-07 01:39:02 +01:00
ynh_script_progression --message="Restoring the NGINX web server configuration..."
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RECREATE THE DEDICATED USER
2018-04-07 12:02:34 +02:00
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Recreating the dedicated system user..."
2018-04-07 12:02:34 +02:00
# Create the dedicated user (if not existing)
2021-04-10 01:48:01 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path" --use_shell
2018-04-07 12:02:34 +02:00
#=================================================
2021-04-10 01:48:01 +02:00
# RESTORE THE APP MAIN DIR
#=================================================
2021-04-10 01:48:01 +02:00
ynh_script_progression --message="Restoring the app main directory..."
ynh_restore_file --origin_path="$final_path"
2021-04-17 18:31:03 +02:00
chmod 750 "$final_path"
2021-04-10 01:48:01 +02:00
chmod -R o-rwx "$final_path"
2021-04-14 20:12:05 +02:00
chown -R $app:www-data "$final_path"
#=================================================
# SPECIFIC RESTORATION
2018-04-07 12:02:34 +02:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Reinstalling dependencies..."
2018-04-07 12:02:34 +02:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
ynh_install_ruby --ruby_version=$RUBY_VERSION
2018-04-07 12:02:34 +02:00
#=================================================
# REINSTALL BUNDLE GEM
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Reinstall Bundle Gem..."
2018-04-07 12:02:34 +02:00
pushd "$final_path"
ynh_use_ruby
ynh_gem install bundler
popd
2018-04-07 12:02:34 +02:00
#=================================================
# RESTORE THE POSTGRESQL DATABASE
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Restoring the PostgreSQL database..."
2018-04-07 12:02:34 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
2018-04-07 12:02:34 +02:00
ynh_psql_test_if_first_run
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
2018-04-07 12:02:34 +02:00
# Set extensions
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS hstore;" --database=$db_name
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS pg_trgm;" --database=$db_name
2018-04-07 12:02:34 +02:00
# Restore dump
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
2018-04-07 12:02:34 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Restoring the systemd configuration..."
2018-04-07 12:02:34 +02:00
2020-04-29 14:13:52 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2021-03-07 01:39:02 +01:00
systemctl enable $app.service --quiet
2018-04-07 12:02:34 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2018-04-07 12:02:34 +02:00
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2018-04-07 12:02:34 +02:00
yunohost service add $app --log "$final_path/log/unicorn.stderr.log" "$final_path/log/unicorn.stdout.log" "$final_path/log/production.log"
2018-04-07 12:02:34 +02:00
#=================================================
# START SYSTEMD SERVICE
2018-04-07 12:02:34 +02:00
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Starting a systemd service..."
2018-04-07 12:02:34 +02:00
if [ -n "$(uname -m | grep arm)" ] ; then
unicorn_workers=2
else
unicorn_workers=3
fi
ynh_app_setting_set --app=$app --key=unicorn_workers --value=$unicorn_workers
ynh_systemd_action --service_name=$app --action="start" --log_path="$final_path/log/unicorn.stderr.log" --line_match="INFO -- : worker=$((unicorn_workers-1)) ready"
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
2021-03-07 01:39:02 +01:00
ynh_script_progression --message="Restoring the logrotate configuration..."
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2021-03-07 01:39:02 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2018-04-07 12:02:34 +02:00
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Restoration completed for $app"