2017-04-10 04:55:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-03-19 23:16:12 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2019-10-07 22:54:13 +02:00
|
|
|
source ../settings/scripts/ynh_install_ruby__2
|
2019-08-11 15:58:52 +02:00
|
|
|
source ../settings/scripts/ynh_add_swap
|
2019-04-06 16:08:48 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-05-01 20:43:05 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-06 16:08:48 +02:00
|
|
|
ynh_clean_setup () {
|
|
|
|
ynh_clean_check_starting
|
|
|
|
}
|
2018-05-01 20:43:05 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-04-10 00:18:53 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2017-04-19 02:37:40 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-05-10 16:34:57 +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)
|
2021-03-01 21:15:26 +01:00
|
|
|
db_user=$(ynh_sanitize_dbid --db_name=$app)
|
2019-05-10 19:38:49 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..."
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_webpath_available --domain=$domain --path_url=$path_url \
|
|
|
|
|| ynh_die --message="Path not available: ${domain}${path_url}"
|
2018-05-01 20:43:05 +02:00
|
|
|
test ! -d $final_path \
|
2019-05-10 16:34:57 +02:00
|
|
|
|| ynh_die --message="There is already a directory: $final_path "
|
2017-04-19 02:37:40 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-04-10 00:18:53 +02:00
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..."
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# RECREATE THE DEDICATED USER
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Recreating the dedicated system user..."
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
# Create the dedicated user (if not existing)
|
2021-04-10 00:18:53 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2021-04-10 00:18:53 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2021-04-10 00:18:53 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R root:$app "$final_path"
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
2019-08-11 15:58:52 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD SWAP IF NEEDED
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Adding swap if needed..."
|
2019-08-11 15:58:52 +02:00
|
|
|
|
2020-05-26 13:18:02 +02:00
|
|
|
total_memory=$(ynh_get_ram --total)
|
2019-08-11 15:58:52 +02:00
|
|
|
swap_needed=0
|
|
|
|
|
2020-05-26 13:19:50 +02:00
|
|
|
if [ $total_memory -lt $MEMORY_NEEDED ]; then
|
2019-08-11 15:58:52 +02:00
|
|
|
# Need a minimum of 8Go of memory
|
2020-05-26 13:19:50 +02:00
|
|
|
swap_needed=$(($MEMORY_NEEDED - $total_memory))
|
2019-08-11 15:58:52 +02:00
|
|
|
fi
|
|
|
|
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Adding $swap_needed Mo to swap..."
|
2019-08-11 15:58:52 +02:00
|
|
|
ynh_add_swap --size=$swap_needed
|
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..."
|
2017-05-26 21:20:07 +02:00
|
|
|
|
2020-05-19 18:58:25 +02:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
2021-04-10 00:18:53 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2019-05-14 21:04:05 +02:00
|
|
|
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
|
2018-05-01 20:43:05 +02:00
|
|
|
|
2019-04-06 16:08:48 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALLING RUBY AND BUNDLER
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Installing Ruby..."
|
2019-03-21 20:34:35 +01:00
|
|
|
|
2020-05-19 01:20:45 +02:00
|
|
|
ynh_install_ruby --ruby_version=$RUBY_VERSION
|
|
|
|
pushd "$final_path/live"
|
|
|
|
gem update --system
|
2020-05-19 01:24:16 +02:00
|
|
|
gem install bundler:$BUNDLER_VERSION --no-document
|
2020-05-19 01:20:45 +02:00
|
|
|
popd
|
2019-03-21 20:34:35 +01:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2019-03-18 04:22:38 +01:00
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..."
|
2018-06-21 04:48:02 +02:00
|
|
|
|
2018-05-01 11:29:25 +02:00
|
|
|
ynh_psql_test_if_first_run
|
2019-05-10 19:38:49 +02:00
|
|
|
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
|
2019-10-08 01:22:50 +02:00
|
|
|
ynh_psql_execute_as_root --sql="ALTER USER $db_user CREATEDB;"
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
|
2017-04-18 02:47:58 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..."
|
2018-05-01 20:43:05 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-web.service"
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-sidekiq.service"
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-streaming.service"
|
2021-02-17 19:22:07 +01:00
|
|
|
systemctl enable "$app-web" "$app-sidekiq" "$app-streaming" --quiet
|
2018-05-01 20:43:05 +02:00
|
|
|
|
2018-06-21 04:48:02 +02:00
|
|
|
#=================================================
|
2020-02-23 19:51:58 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2018-06-21 04:48:02 +02:00
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
2018-06-21 04:48:02 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
yunohost service add "$app-web" --description="$app web service"
|
|
|
|
yunohost service add "$app-sidekiq" --description="$app sidekiq service"
|
|
|
|
yunohost service add "$app-streaming" --description="$app streaming service"
|
2018-06-21 04:48:02 +02:00
|
|
|
|
2018-11-07 05:12:21 +01:00
|
|
|
#=================================================
|
2019-05-10 16:34:57 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2018-11-07 05:12:21 +01:00
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2018-11-07 05:12:21 +01:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on tcp"
|
2020-12-11 14:40:13 +01:00
|
|
|
ynh_systemd_action --service_name=${app}-sidekiq --action="start" --log_path=systemd --line_match="Schedules Loaded"
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_systemd_action --service_name=${app}-streaming --action="start" --log_path=systemd --line_match="Worker 1 now listening"
|
2018-11-07 05:12:21 +01:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2019-05-10 16:34:57 +02:00
|
|
|
# RESTORE THE CRON FILE
|
2019-04-06 16:08:48 +02:00
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Restoring the cron file..."
|
2019-04-06 16:08:48 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/cron.d/$app"
|
2019-04-06 16:08:48 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2019-04-06 16:08:48 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2021-02-17 19:22:07 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2018-05-01 20:43:05 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-03-18 04:22:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|