2016-10-25 23:34:42 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-07-25 23:14:14 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-10-14 15:59:58 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2023-12-10 11:16:54 +01:00
|
|
|
#=================================================
|
|
|
|
# INSTALL NODEJS
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Reinstalling dependencies..."
|
2023-12-10 11:16:54 +01:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_nodejs_install
|
2023-12-10 11:16:54 +01:00
|
|
|
|
2017-10-14 15:59:58 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Restoring the app main directory..."
|
2017-10-14 15:59:58 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_restore "$install_dir"
|
2017-10-14 15:59:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-07-25 23:14:14 +02:00
|
|
|
# RESTORE VARIOUS FILES
|
2017-10-14 15:59:58 +02:00
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Restoring the data directory..."
|
2016-10-25 23:34:42 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_restore "$data_dir"
|
2022-05-13 23:11:01 +02:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
chown -R $app:www-data "$data_dir"
|
2016-10-25 23:34:42 +02:00
|
|
|
|
2020-09-06 18:03:25 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE BINARY
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Restoring various files..."
|
2020-09-06 18:03:25 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_restore "/usr/bin/$app"
|
2020-09-06 18:03:25 +02:00
|
|
|
chmod +x /usr/bin/$app
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2020-09-06 21:02:36 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE HANDLE LOG FILES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
mkdir -p /var/log/$app
|
|
|
|
touch /var/log/$app/$app.log
|
|
|
|
|
2017-11-29 15:42:21 +01:00
|
|
|
#=================================================
|
2020-07-25 23:14:14 +02:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2017-11-29 15:42:21 +01:00
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Integrating service in YunoHost..."
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2020-07-25 23:14:14 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_restore "/etc/logrotate.d/$app"
|
2020-09-06 20:58:26 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_restore "/etc/systemd/system/$app.service"
|
2020-12-14 10:34:54 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2020-09-06 20:58:26 +02:00
|
|
|
|
2024-06-18 10:01:08 +02:00
|
|
|
yunohost service add $app --description="Haste is a pastebin software" --log="/var/log/$app/$app.log"
|
2020-07-25 23:14:14 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2020-07-25 23:14:14 +02:00
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2020-07-25 23:14:14 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_systemctl --service=$app --action=start
|
2016-10-25 23:34:42 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_systemctl --service=nginx --action=reload
|
2020-07-25 23:14:14 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
2017-10-14 15:59:58 +02:00
|
|
|
#=================================================
|
2016-10-25 23:34:42 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Restoration completed for $app"
|