2016-10-25 23:34:42 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-10-14 15:59:58 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
2017-10-14 15:59:58 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-07-25 23:14:14 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=6
|
2017-10-14 15:59:58 +02:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2017-10-14 15:59:58 +02:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$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
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_script_progression --message="Restoring the data directory..." --weight=1
|
2016-10-25 23:34:42 +02:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
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
|
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_script_progression --message="Restoring various files..." --weight=1
|
2020-09-06 18:03:25 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/usr/bin/$app"
|
|
|
|
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
|
|
|
|
chown $app -R /var/log/$app
|
|
|
|
|
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
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2020-07-25 23:14:14 +02:00
|
|
|
|
2024-06-18 10:01:08 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
2020-09-06 20:58:26 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/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
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2020-07-25 23:14:14 +02:00
|
|
|
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
|
2016-10-25 23:34:42 +02:00
|
|
|
|
2020-07-25 23:14:14 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
2017-10-14 15:59:58 +02:00
|
|
|
#=================================================
|
2016-10-25 23:34:42 +02:00
|
|
|
|
2020-07-25 23:14:14 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|