send_ynh/scripts/restore

47 lines
1.4 KiB
Plaintext
Raw Normal View History

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
#=================================================
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
2024-09-08 16:27:08 +02:00
#chmod -R o-rwx "$install_dir"
#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"