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

162 lines
6.2 KiB
Text
Raw Normal View History

2021-02-21 06:08:46 +01: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
#=================================================
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_clean_setup () {
2022-09-20 01:10:16 +02:00
true
2021-02-21 06:08:46 +01:00
}
# Exit if an error occurs during the execution of the script
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_abort_if_errors
2021-02-21 06:08:46 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
2021-02-21 06:08:46 +01:00
2023-05-26 16:42:26 +02:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2021-02-21 06:08:46 +01:00
2023-05-26 16:42:26 +02:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#REMOVEME? db_user=$db_name
#REMOVEME? db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
#REMOVEME? data_dir=$(ynh_app_setting_get --app=$app --key=data_dir)
2021-02-21 06:08:46 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_script_progression --message="Validating restoration parameters..." --weight=1
2021-02-21 06:08:46 +01:00
2023-05-26 16:42:26 +02:00
#REMOVEME? test ! -d $install_dir \
|| ynh_die --message="There is already a directory: $install_dir "
2021-02-21 06:08:46 +01:00
#=================================================
# STANDARD RESTORATION STEPS
2021-07-07 16:42:05 +02:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
2021-07-07 16:42:05 +02:00
# Create the dedicated user (if not existing)
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2021-07-07 16:42:05 +02:00
2021-02-21 06:08:46 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2021-02-21 06:08:46 +01:00
2023-05-26 16:42:26 +02:00
ynh_restore_file --origin_path="$install_dir"
2021-02-21 06:08:46 +01:00
2023-05-26 16:42:26 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2021-02-21 06:08:46 +01:00
#=================================================
2021-07-07 16:42:05 +02:00
# RESTORE THE DATA DIRECTORY
2021-02-21 06:08:46 +01:00
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Restoring the data directory..." --weight=1
2021-02-21 06:08:46 +01:00
2023-05-26 16:42:26 +02:00
ynh_restore_file --origin_path="$data_dir" --not_mandatory
2021-02-21 06:08:46 +01:00
2023-05-26 16:42:26 +02:00
mkdir -p $data_dir
2021-07-07 16:42:05 +02:00
2023-05-26 16:42:26 +02:00
chmod 750 "$data_dir"
chmod -R o-rwx "$data_dir"
chown -R $app:$app "$data_dir"
2021-02-21 06:08:46 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
2021-07-07 16:42:05 +02:00
# REINSTALL DEPENDENCIES
#=================================================
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2021-07-07 16:42:05 +02:00
# Define and install dependencies
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2021-07-07 16:42:05 +02:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
ynh_use_nodejs
2021-07-30 20:15:04 +02:00
ln -fs /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1
2021-07-07 16:42:05 +02:00
2022-09-20 01:10:16 +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"
#=================================================
# RESTORE THE POSTGRESQL DATABASE
#=================================================
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=1
2022-09-20 01:10:16 +02:00
2023-05-26 16:42:26 +02:00
#REMOVEME? ynh_psql_test_if_first_run
#REMOVEME? ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
2022-09-20 01:10:16 +02:00
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS pgcrypto;" --database="$db_name"
2021-07-07 16:42:05 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2021-07-07 16:42:05 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
ynh_restore_file --origin_path="/etc/systemd/system/$app-ui.service"
systemctl enable $app-ui.service --quiet
2021-08-22 14:30:50 +02:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
2021-08-22 14:30:50 +02:00
mkdir -p "/var/log/$app"
chmod 750 "/var/log/$app"
chmod -R o-rwx "/var/log/$app"
chown -R $app:$app "/var/log/$app"
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2021-07-07 16:42:05 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-07-07 16:42:05 +02:00
2022-07-27 01:44:20 +02:00
yunohost service add $app --log="/var/log/$app/$app.log"
yunohost service add $app-ui --log="/var/log/$app/$app-ui.log"
2021-07-07 16:42:05 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-07-07 16:42:05 +02:00
2022-09-24 18:22:25 +02:00
ynh_systemd_action --service_name=$app --action="start" --line_match="Starting http server at" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app-ui --action="start" --line_match="http://0.0.0.0" --log_path="/var/log/$app/$app-ui.log"
2021-07-07 16:42:05 +02:00
2021-02-21 06:08:46 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
2021-08-27 02:06:02 +02:00
# RELOAD NGINX
2021-02-21 06:08:46 +01:00
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-02-21 06:08:46 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Restoration completed for $app" --last