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
|
|
|
|
# Maybe the backup contains a other Python version
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Recreate Python virtualenv..." --weight=5
|
|
|
|
|
|
|
|
# Always recreate everything fresh with current python version
|
2024-01-18 13:19:08 +01:00
|
|
|
ynh_secure_remove "${install_dir}/venv"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
# Skip pip because of: https://github.com/YunoHost/issues/issues/1960
|
2024-01-18 13:19:08 +01:00
|
|
|
python3 -m venv --without-pip "${install_dir}/venv"
|
|
|
|
chown -R "$app:" "$install_dir"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PIP INSTALLATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Install project via pip..." --weight=45
|
|
|
|
#run source in a 'sub shell'
|
|
|
|
(
|
2024-01-18 14:19:07 +01:00
|
|
|
set +o nounset
|
|
|
|
source "${install_dir}/venv/bin/activate"
|
|
|
|
set -o nounset
|
|
|
|
ynh_exec_as $app $install_dir/venv/bin/python3 -m ensurepip
|
|
|
|
ynh_exec_as $app $install_dir/venv/bin/pip3 install --upgrade wheel pip setuptools
|
|
|
|
ynh_exec_as $app $install_dir/venv/bin/pip3 install --no-deps -r "$install_dir/requirements.txt"
|
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
|
|
|
|
yunohost service add "$app" --description="Digital signage system for high schools" --log="$log_file"
|
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
|