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

161 lines
5.8 KiB
Text
Raw Normal View History

2019-03-13 14:15:09 +01:00
#!/bin/bash
2019-03-22 16:36:55 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-03-27 04:08:34 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source ../settings/scripts/ynh_install_ruby__2
2019-03-22 16:36:55 +01:00
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2022-09-16 02:10:53 +02:00
true
2019-03-22 16:36:55 +01:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2019-03-13 14:15:09 +01:00
2019-03-22 16:36:55 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2019-03-13 14:15:09 +01:00
app=$YNH_APP_INSTANCE_NAME
2022-03-27 04:08:34 +02:00
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
2019-03-22 16:36:55 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2019-03-22 16:36:55 +01:00
test ! -d $final_path \
2022-03-27 04:08:34 +02:00
|| ynh_die --message="There is already a directory: $final_path "
2019-03-22 16:36:55 +01:00
#=================================================
# STANDARD RESTORATION STEPS
2022-03-27 04:08:34 +02:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
2022-03-27 04:08:34 +02:00
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
2019-03-22 16:36:55 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2022-03-27 04:08:34 +02:00
ynh_restore_file --origin_path="$final_path"
2022-09-16 02:10:53 +02:00
ynh_secure_remove --file="$final_path/tmp"
mkdir -p "$final_path/files" "$final_path/log" "$final_path/tmp" "$final_path/public/plugin_assets"
2022-03-27 04:08:34 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2022-03-27 04:08:34 +02:00
# Define and install dependencies
2022-04-12 21:49:06 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies $build_pkg_dependencies
2022-04-13 07:25:01 +02:00
ynh_exec_warn_less ynh_install_ruby --ruby_version=$ruby_version
2019-03-22 16:36:55 +01:00
2022-09-16 02:10:53 +02:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-03-22 16:36:55 +01:00
#=================================================
2022-03-27 04:08:34 +02:00
# RESTORE THE POSTGRESQL DATABASE
2019-03-22 16:36:55 +01:00
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Restoring the PostgeSQL database..." --weight=1
2022-03-27 04:08:34 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
2019-03-22 16:36:55 +01:00
ynh_psql_test_if_first_run
2022-03-27 04:08:34 +02:00
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-22 16:36:55 +01:00
#=================================================
2022-03-27 04:08:34 +02:00
# BUILD APP
2019-03-22 16:36:55 +01:00
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Building app..." --weight=1
2019-03-22 16:36:55 +01:00
2022-03-27 04:08:34 +02:00
pushd $final_path
ynh_use_ruby
ynh_gem update --system --no-document
ynh_gem install bundler passenger --no-document
2022-04-13 08:51:29 +02:00
bundle config set --local without 'development test rmagick'
2022-03-27 04:08:34 +02:00
bundle install
popd
2022-04-13 07:25:01 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2022-03-27 04:08:34 +02:00
chmod 750 "$final_path/public"
chmod -R o-rwx "$final_path/public"
chown -R $app:www-data "$final_path/public"
2019-03-22 16:36:55 +01:00
#=================================================
2022-03-27 04:08:34 +02:00
# RESTORE SYSTEMD
2019-03-22 16:36:55 +01:00
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2019-03-22 16:36:55 +01:00
2022-03-27 04:08:34 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
2019-03-22 16:36:55 +01:00
#=================================================
2022-03-27 04:08:34 +02:00
# RESTORE THE LOGROTATE CONFIGURATION
2019-03-22 16:36:55 +01:00
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
2022-03-27 04:08:34 +02:00
mkdir -p "/var/log/$app"
chown -R $app:$app "/var/log/$app"
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2019-03-22 16:36:55 +01:00
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2019-03-22 16:36:55 +01:00
2022-03-27 04:08:34 +02:00
yunohost service add $app --log="/var/log/$app/$app.log"
2019-03-22 16:36:55 +01:00
2022-03-27 04:08:34 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2019-03-22 16:36:55 +01:00
2022-03-27 04:08:34 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match="WEBrick::HTTPServer#start"
2019-03-22 16:36:55 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2022-03-27 04:08:34 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2019-03-13 14:15:09 +01:00
2022-09-16 02:10:53 +02:00
ynh_script_progression --message="Restoration completed for $app" --last