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

52 lines
1.8 KiB
Text
Raw Permalink Normal View History

2022-01-28 17:15:32 +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
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2023-09-25 08:59:54 +02:00
ynh_restore_file --origin_path="$install_dir"
2022-01-28 17:15:32 +01:00
2023-09-25 08:59:54 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-01-28 17:15:32 +01:00
2022-01-28 18:15:53 +01:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2023-09-25 08:59:54 +02:00
#REMOVEME? ynh_script_progression --message="Reinstalling dependencies..." --weight=6
2022-01-28 18:15:53 +01:00
2022-05-30 13:46:25 +02:00
# Define and install dependencies
2022-01-28 18:15:53 +01:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2022-07-03 03:51:17 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2022-01-28 17:15:32 +01:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
yunohost service add $app --description="Online word game" --log="/var/log/$app/$app.log"
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=3
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Jeu démarré"
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last