2021-11-01 18:18:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2021-11-02 06:31:18 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2021-11-01 18:18:52 +01:00
|
|
|
|
2023-03-21 09:28:18 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-11-01 18:18:52 +01:00
|
|
|
|
2023-03-21 09:28:18 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-11-01 18:18:52 +01:00
|
|
|
|
2021-11-02 06:19:30 +01:00
|
|
|
#=================================================
|
|
|
|
# INSTALL NODEJS
|
|
|
|
#=================================================
|
2021-11-02 10:38:23 +01:00
|
|
|
ynh_script_progression --message="Reinstalling nodejs version..." --weight=2
|
2021-11-02 06:19:30 +01:00
|
|
|
|
2023-03-21 09:41:07 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2021-11-01 18:18:52 +01:00
|
|
|
|
2023-03-21 09:41:07 +01:00
|
|
|
ynh_install_nodejs --nodejs_version=$nodejs_version
|
2021-11-01 18:18:52 +01:00
|
|
|
|
2021-11-02 11:05:43 +01:00
|
|
|
ynh_restore_file --origin_path="/var/log/$app/"
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2021-11-02 06:35:06 +01:00
|
|
|
yunohost service add $app --description="Uptime Kuma, a fancy monitoring tool" --log="/var/log/$app/$app.log"
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-11-02 06:31:18 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-11-02 06:31:18 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|