scratch_ynh/scripts/restore

52 lines
1.9 KiB
Text
Raw Normal View History

2018-11-29 11:55:24 +01:00
#!/bin/bash
2021-06-27 15:43:18 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-11-29 11:55:24 +01:00
2021-06-27 15:43:18 +02:00
# 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
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2021-06-27 18:51:27 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=3
2021-06-27 15:43:18 +02:00
2023-07-20 23:20:17 +02:00
ynh_restore_file --origin_path="$install_dir"
2021-06-27 15:43:18 +02:00
2023-07-20 23:20:17 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-06-27 15:43:18 +02:00
2023-10-02 23:00:47 +02:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
2024-05-13 11:29:16 +02:00
ynh_install_nodejs --nodejs_version=$nodejs_version
2023-10-02 23:00:47 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2024-05-13 11:29:16 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable "$app.service" --quiet
yunohost service add "$app" --description="Language to create your own interactive stories" --log="/var/log/$app/$app.log"
2021-06-27 15:43:18 +02:00
#=================================================
2024-05-13 11:29:16 +02:00
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
2021-06-27 15:43:18 +02:00
#=================================================
2024-05-13 11:29:16 +02:00
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
### Typically you only have either $app or php-fpm but not both at the same time...
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2021-06-27 15:43:18 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2018-11-29 11:55:24 +01:00
2021-06-27 15:43:18 +02:00
ynh_script_progression --message="Restoration completed for $app" --last