2021-03-01 02:41:36 +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
|
|
|
|
|
|
|
|
#=================================================
|
2021-07-14 18:44:40 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2021-03-01 02:41:36 +01:00
|
|
|
#=================================================
|
2021-07-14 18:44:40 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2021-03-01 02:41:36 +01:00
|
|
|
|
2024-02-04 19:14:24 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-07-14 18:44:40 +02:00
|
|
|
|
2024-02-04 19:14:24 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-03-01 02:41:36 +01:00
|
|
|
|
|
|
|
#=================================================
|
2024-02-04 19:14:24 +01:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2021-03-01 02:41:36 +01:00
|
|
|
#=================================================
|
2024-02-04 19:14:24 +01:00
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2022-08-02 04:04:50 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2021-03-01 02:41:36 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2024-02-04 19:14:24 +01:00
|
|
|
systemctl enable "$app.service" --quiet
|
|
|
|
yunohost service add "$app" --description="Federated social network server" --log="/var/log/$app/$app.log"
|
2021-03-01 02:41:36 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2024-02-04 19:14:24 +01:00
|
|
|
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
|
2021-03-01 02:41:36 +01:00
|
|
|
#=================================================
|
2024-02-04 19:14:24 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
2021-03-01 02:41:36 +01:00
|
|
|
|
2024-02-04 19:14:24 +01:00
|
|
|
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
|
2021-03-01 02:41:36 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-14 18:44:40 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|