send_ynh/scripts/restore

48 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-08-25 17:42:59 +02:00
#!/bin/bash
2022-06-29 02:17:46 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2021-08-25 17:42:59 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression "Restoring the app main directory..."
2021-08-25 17:42:59 +02:00
ynh_restore "$install_dir"
2021-08-25 17:42:59 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R "$app:www-data" "$install_dir"
2023-03-25 21:16:15 +01:00
chmod +x "$install_dir/server/bin/prod.js"
2021-08-25 17:42:59 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
ynh_script_progression "Reinstalling dependencies..."
2021-08-25 17:42:59 +02:00
ynh_nodejs_install
2021-08-25 17:42:59 +02:00
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
2022-06-29 02:17:46 +02:00
ynh_restore "/etc/systemd/system/$app.service"
2024-01-17 01:43:15 +01:00
systemctl enable "$app.service" --quiet
2021-08-25 17:42:59 +02:00
2024-01-17 01:43:15 +01:00
yunohost service add "$app" --description="Simple, private file sharing" --log="/var/log/$app/$app.log"
2021-08-25 17:42:59 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression "Starting $app's systemd service..."
2021-08-25 17:42:59 +02:00
ynh_systemctl --service="$app" --action="start" --log_path="systemd"
2021-08-25 17:42:59 +02:00
ynh_systemctl --service=nginx --action=reload
2021-08-25 17:42:59 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Restoration completed for $app"