2023-05-26 19:09:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 14:19:07 +01:00
|
|
|
chmod o-rwx "$install_dir"
|
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-18 14:19:07 +01:00
|
|
|
# RESTORE THE POSTGRES DATABASE
|
2023-05-26 19:09:08 +02:00
|
|
|
#=================================================
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_script_progression --message="Restoring the Postgresql database..." --weight=1
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_psql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < ./db.sql
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PYTHON VIRTUALENV
|
|
|
|
#=================================================
|
2024-01-18 20:59:05 +01:00
|
|
|
ynh_script_progression --message="Update Python virtualenv..." --weight=5
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 20:59:05 +01:00
|
|
|
python3 -m venv --upgrade --without-pip "$install_dir/venv"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-18 14:19:07 +01:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2023-05-26 19:09:08 +02:00
|
|
|
#=================================================
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2024-01-18 14:19:07 +01:00
|
|
|
systemctl enable "$app.service" --quiet
|
2024-01-18 14:26:30 +01:00
|
|
|
yunohost service add "$app" --description="Digital signage system for high schools" --log="/var/log/$app/$app.log"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_restore_file --origin_path="/var/log/$app/"
|
|
|
|
chmod o-rwx "/var/log/$app"
|
|
|
|
chown -R "$app:" "/var/log/$app"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2024-01-18 14:19:07 +01:00
|
|
|
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
|
2023-05-26 19:09:08 +02:00
|
|
|
#=================================================
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 14:19:07 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|