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

74 lines
2.7 KiB
Text
Raw Normal View History

2017-09-22 13:53:04 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-11-25 10:22:17 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2017-09-22 13:53:04 +02:00
source /usr/share/yunohost/helpers
#=================================================
2021-11-25 10:22:17 +01:00
# RESTORE THE APP MAIN DIR
2017-09-22 13:53:04 +02:00
#=================================================
2021-11-25 12:05:27 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=3
2021-11-25 10:22:17 +01:00
2023-12-09 20:44:45 +01:00
ynh_restore_file --origin_path="$install_dir"
2021-11-25 10:22:17 +01:00
2023-12-09 20:44:45 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2017-09-22 13:53:04 +02:00
2021-11-25 14:36:29 +01:00
#=================================================
# RESTORE THE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Restoring the data directory..." --weight=1
2023-12-09 20:44:45 +01:00
ynh_restore_file --origin_path="$data_dir" --not_mandatory
2021-11-25 14:36:29 +01:00
2023-12-09 20:44:45 +01:00
chown -R $app:www-data "$data_dir"
2021-11-25 14:36:29 +01:00
2021-11-25 10:22:17 +01:00
#=================================================
# SPECIFIC RESTORATION
2017-09-22 13:53:04 +02:00
#=================================================
2021-11-25 10:22:17 +01:00
# REINSTALL DEPENDENCIES
2017-09-22 13:53:04 +02:00
#=================================================
2023-12-09 20:50:53 +01:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=20
2017-09-22 13:53:04 +02:00
2021-11-25 12:05:27 +01:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2017-09-22 13:53:04 +02:00
2021-11-25 10:22:17 +01:00
#=================================================
2021-11-25 14:36:29 +01:00
# RESTORE THE POSTGRESQL DATABASE
2021-11-25 10:22:17 +01:00
#=================================================
2023-12-09 20:50:53 +01:00
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
2017-09-22 13:53:04 +02:00
2023-12-10 11:12:24 +01:00
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2017-09-22 13:53:04 +02:00
#=================================================
2021-11-25 10:22:17 +01:00
# RESTORE SYSTEMD
2017-09-22 13:53:04 +02:00
#=================================================
2021-11-25 12:05:27 +01:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2021-11-25 10:22:17 +01:00
2023-12-09 20:50:53 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2021-11-25 10:22:17 +01:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
2017-09-22 13:53:04 +02:00
2023-12-10 11:12:24 +01:00
yunohost service add $app --description="Share notes, bookmarks, and documents" --log="/var/log/$app/$app.log"
2017-09-22 13:53:04 +02:00
#=================================================
2021-11-25 10:22:17 +01:00
# START SYSTEMD SERVICE
2017-09-22 13:53:04 +02:00
#=================================================
2021-11-25 12:05:27 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=5
2021-11-25 10:22:17 +01:00
2022-02-22 00:35:52 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Listening for turtls on IP"
2017-09-22 13:53:04 +02:00
2021-11-25 10:22:17 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-11-25 12:05:27 +01:00
ynh_script_progression --message="Restoration completed for $app" --last