1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/traggo_ynh.git synced 2024-09-04 01:15:55 +02:00
traggo_ynh/scripts/restore

50 lines
1.8 KiB
Text
Raw Normal View History

2022-07-29 08:00:45 +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
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2022-07-29 08:16:51 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=3
2022-07-29 08:00:45 +02:00
2023-05-21 12:57:53 +02:00
ynh_restore_file --origin_path="$install_dir"
2022-07-29 08:00:45 +02:00
2023-05-21 12:57:53 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chmod +x $install_dir/traggo
2022-07-29 08:00:45 +02:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2022-07-29 08:16:51 +02:00
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=2
2022-07-29 08:00:45 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
yunohost service add $app --description="Self-hosted tag-based time tracking" --log="/var/log/$app/$app.log"
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-07-29 08:16:51 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-07-29 08:00:45 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-07-29 08:16:51 +02:00
ynh_script_progression --message="Restoration completed for $app" --last