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

80 lines
2.9 KiB
Text
Raw Normal View History

2022-02-05 12:03:12 +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-04-03 10:21:12 +02:00
ynh_restore_file --origin_path="$install_dir"
2022-02-05 12:03:12 +01:00
2023-04-03 10:21:12 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-02-05 12:03:12 +01:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2023-04-03 10:21:12 +02:00
#REMOVEME? ynh_script_progression --message="Reinstalling dependencies..." --weight=7
2022-02-05 12:03:12 +01:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2022-07-19 01:49:58 +02:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE VARIOUS FILES
#=================================================
ynh_script_progression --message="Restoring various files..."
ynh_restore_file --origin_path="$webircgateway_path"
2022-02-05 12:03:12 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-07-19 01:49:58 +02:00
yunohost service add $app --description="Simple IRC web client"
2022-02-05 12:03:12 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-07-19 01:49:58 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Using config"
2022-02-05 12:03:12 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
ynh_script_progression --message="Reloading NGINX web server.." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last