2017-06-17 17:28:57 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-05-21 01:10:01 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2020-07-01 17:14:15 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-06-17 17:28:57 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2021-05-21 01:10:01 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
|
|
|
|
2023-06-10 21:45:19 +02:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-05-21 01:10:01 +02:00
|
|
|
|
2023-06-10 21:45:19 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-05-21 01:10:01 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
2022-06-11 05:03:46 +02:00
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
2021-05-21 01:10:01 +02:00
|
|
|
# RESTORE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2023-06-10 22:38:45 +02:00
|
|
|
ynh_script_progression --message="Restoring the MySQL database..." --weight=1
|
2021-05-21 01:10:01 +02:00
|
|
|
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
2023-06-12 16:53:23 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE LOG
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/var/log/$app"
|
|
|
|
|
2021-05-21 01:10:01 +02:00
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
|
|
|
|
2021-12-16 19:41:34 +01:00
|
|
|
yunohost service add $app --description="$app daemon for IHateMoney" --log=systemd
|
2021-05-21 01:10:01 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
2023-09-05 14:01:32 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --line_match="Listening at"
|
2023-06-10 23:09:04 +02:00
|
|
|
wait_gunicorn_start
|
2018-12-18 20:05:05 +01:00
|
|
|
|
2021-05-21 01:10:01 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2017-06-17 17:28:57 +02:00
|
|
|
|
2021-05-21 01:10:01 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2017-06-17 17:28:57 +02:00
|
|
|
|
2021-05-21 01:10:01 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2020-07-01 18:46:50 +02:00
|
|
|
|
2021-05-21 01:10:01 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|