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

101 lines
3.6 KiB
Text
Raw Normal View History

2021-09-21 00:25:53 +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
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2022-04-01 21:43:59 +02:00
#=================================================
# CHECK IF DEX IS INSTALLED, IF NOT INSTALL IT
#=================================================
ynh_script_progression --message="Installing Dex if needed..." --weight=18
if ! yunohost app list | grep -q "id: $dex_app"; then
echo "Dex is not installed. Installing... "
yunohost tools update
if yunohost app list | grep -q "$dex_domain$dex_path"; then
ynh_die "The domain provided for Dex is already used by another app. Please chose another one !"
fi
2024-02-14 17:30:26 +01:00
yunohost app install https://github.com/YunoHost-Apps/dex_ynh --force --args "domain=$dex_domain&path=$dex_path&oidc_name=$oidc_name&oidc_secret=$oidc_secret&oidc_callback=$oidc_callback"
2022-04-01 21:43:59 +02:00
fi
2021-09-21 00:25:53 +02:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2021-09-21 00:25:53 +02:00
2023-10-09 12:14:47 +02:00
ynh_restore_file --origin_path="$install_dir"
2021-09-21 00:25:53 +02:00
2023-10-09 12:14:47 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-09-21 00:25:53 +02:00
2021-11-12 17:44:18 +01:00
#=================================================
2023-09-29 12:24:16 +02:00
# RESTORE LOCAL STORAGE
2021-11-12 17:44:18 +01:00
#=================================================
2023-09-29 12:24:16 +02:00
ynh_script_progression --message="Restoring the app local storage..." --weight=1
2023-09-29 12:24:16 +02:00
ynh_restore_file --origin_path="/var/lib/outline"
2023-09-30 17:47:07 +02:00
chmod -R o-rwx "/var/lib/outline"
2023-09-29 12:24:16 +02:00
chown -R $app:www-data "/var/lib/outline"
2021-11-12 17:44:18 +01:00
2023-10-09 13:00:35 +02:00
#=================================================
# RESTORE THE POSTGRESQL DATABASE
#=================================================
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
2021-09-21 00:25:53 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2023-10-09 13:00:35 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2021-09-21 00:25:53 +02:00
2021-09-23 20:12:33 +02:00
# Install nodejs
2022-04-18 18:01:14 +02:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION 2>&1
2021-09-21 00:25:53 +02:00
2023-10-09 13:00:35 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2021-09-21 00:25:53 +02:00
2023-10-09 13:00:35 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
2021-09-21 00:25:53 +02:00
2023-10-09 13:00:35 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2021-09-21 00:25:53 +02:00
2023-10-09 13:00:35 +02:00
ynh_restore_file --origin_path="/var/log/$app/$app.log"
ynh_restore_file --origin_path="/etc/cron.d/$app"
yunohost service add $app --description="Outline server" --log="/var/log/$app/$app.log"
2021-09-21 00:25:53 +02:00
2021-11-13 09:51:37 +01:00
#=================================================
# UPDATING A CONFIGURATION
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Updating the configuration file..." --weight=1
2021-11-13 09:51:37 +01:00
2023-10-09 12:14:47 +02:00
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
2021-11-13 09:51:37 +01:00
2023-10-09 12:14:47 +02:00
chmod 400 "$install_dir/.env"
chown $app:$app "$install_dir/.env"
2021-11-13 09:51:37 +01:00
2021-09-21 00:25:53 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-09-21 00:25:53 +02:00
2023-10-09 13:00:35 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2021-09-21 00:25:53 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Restoration completed for $app" --last