2022-03-28 11:33:36 +02: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
|
|
|
|
#=================================================
|
2022-03-28 11:40:26 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=3
|
2022-03-28 11:33:36 +02:00
|
|
|
|
2023-03-10 17:28:03 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2022-03-28 11:33:36 +02:00
|
|
|
|
2023-03-10 17:28:03 +01:00
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
chmod +x "$install_dir/listmonk"
|
2022-03-28 11:33:36 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2023-03-10 17:38:25 +01:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
|
2022-03-28 11:33:36 +02:00
|
|
|
|
2023-09-27 15:16:55 +02:00
|
|
|
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2022-03-28 11:33:36 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
2022-03-28 11:40:26 +02:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
2022-03-28 11:33:36 +02:00
|
|
|
|
2023-08-15 19:36:16 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2022-03-28 11:33:36 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
2022-03-28 11:40:26 +02:00
|
|
|
yunohost service add $app --description="Newsletter and mailing list manager" --log="/var/log/$app/$app.log"
|
2022-03-28 11:33:36 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2023-09-27 15:16:55 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
2022-03-28 11:33:36 +02:00
|
|
|
|
2022-03-28 15:06:59 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
2022-03-28 11:33:36 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-28 11:40:26 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|