2021-08-25 17:42:59 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_script_progression "Restoring the app main directory..."
|
2021-08-25 17:42:59 +02:00
|
|
|
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_restore "$install_dir"
|
2021-08-25 17:42:59 +02:00
|
|
|
|
2023-03-25 21:16:15 +01:00
|
|
|
chmod +x "$install_dir/server/bin/prod.js"
|
2021-08-25 17:42:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_script_progression "Reinstalling dependencies..."
|
2021-08-25 17:42:59 +02:00
|
|
|
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_nodejs_install
|
2021-08-25 17:42:59 +02:00
|
|
|
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2022-06-29 02:17:46 +02:00
|
|
|
|
2024-08-31 02:59:44 +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
|
|
|
|
#=================================================
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2021-08-25 17:42:59 +02:00
|
|
|
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_systemctl --service="$app" --action="start" --log_path="systemd"
|
2021-08-25 17:42:59 +02:00
|
|
|
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_systemctl --service=nginx --action=reload
|
2021-08-25 17:42:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 02:59:44 +02:00
|
|
|
ynh_script_progression "Restoration completed for $app"
|