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

59 lines
1.9 KiB
Text
Raw Normal View History

2021-02-16 13:38:59 +01:00
#!/bin/bash
2022-07-03 16:40:34 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2021-02-16 14:17:45 +01:00
source ../settings/scripts/_common.sh
2021-02-16 13:38:59 +01:00
source /usr/share/yunohost/helpers
2022-05-22 10:43:07 +02:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2024-06-23 09:23:13 +02:00
ynh_script_progression "Restoring the app main directory..."
2022-05-22 10:43:07 +02:00
2024-06-23 09:23:13 +02:00
ynh_restore "$install_dir"
2022-05-22 10:43:07 +02:00
2023-03-12 22:15:34 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-02-16 14:17:45 +01:00
2022-07-03 16:40:34 +02:00
#=================================================
# RESTORE THE DATA DIRECTORY
#=================================================
2024-06-23 09:23:13 +02:00
ynh_script_progression "Restoring the data directory..."
2022-07-03 16:40:34 +02:00
2024-06-23 09:23:13 +02:00
ynh_restore "$data_dir"
2022-07-03 16:40:34 +02:00
2023-03-12 22:15:34 +01:00
chown -R $app:www-data "$data_dir"
2022-07-03 16:40:34 +02:00
2021-02-16 14:17:45 +01:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2024-06-23 09:23:13 +02:00
ynh_script_progression "Reinstalling dependencies..."
2021-02-16 14:17:45 +01:00
2024-06-23 09:23:13 +02:00
ynh_nodejs_install
2021-02-16 14:17:45 +01:00
#=================================================
2023-03-12 22:29:28 +01:00
# RESTORE SYSTEM CONFIGURATIONS
2021-02-16 14:17:45 +01:00
#=================================================
2024-06-23 09:23:13 +02:00
ynh_script_progression "Restoring system configurations related to $app..."
2021-02-16 14:17:45 +01:00
2024-06-23 09:23:13 +02:00
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
2021-02-16 14:17:45 +01:00
2024-06-23 09:23:13 +02:00
ynh_restore "/etc/systemd/system/$app.service"
2022-07-03 16:40:34 +02:00
systemctl enable $app.service --quiet
2021-11-18 18:54:23 +01:00
2024-06-23 09:25:57 +02:00
yunohost service add $app --description="Non-linear personal web notebook" --log="/var/log/$app/$app.log"
2021-02-16 14:17:45 +01:00
2021-02-16 13:38:59 +01:00
#=================================================
2023-03-12 22:29:28 +01:00
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
2021-02-16 13:38:59 +01:00
#=================================================
2024-06-23 09:23:13 +02:00
ynh_script_progression "Reloading NGINX web server and $app's service..."
2023-03-12 22:29:28 +01:00
2024-06-23 09:23:13 +02:00
ynh_systemctl --service=$app --action="start" --log_path="systemd" --wait_until="Serving on"
2021-02-16 13:38:59 +01:00
2024-06-23 09:23:13 +02:00
ynh_systemctl --service=nginx --action=reload
2021-02-16 13:38:59 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2024-06-23 09:23:13 +02:00
ynh_script_progression "Restoration completed for $app"