2018-03-27 19:32:35 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-04-09 23:37:52 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-04-03 03:27:49 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2018-03-31 12:09:27 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2018-04-01 00:03:32 +02:00
|
|
|
#=================================================
|
2021-04-10 19:38:56 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2018-04-01 00:03:32 +02:00
|
|
|
#=================================================
|
2021-04-10 19:38:56 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2020-06-01 03:40:44 +02:00
|
|
|
#=================================================
|
2020-09-20 18:36:20 +02:00
|
|
|
# RESTORE THE DATA DIRECTORY
|
2020-06-01 03:40:44 +02:00
|
|
|
#=================================================
|
2021-06-29 22:13:41 +02:00
|
|
|
ynh_script_progression --message="Restoring the data directory..."
|
2020-06-01 03:40:44 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2020-09-20 18:36:20 +02:00
|
|
|
|
2023-03-21 23:12:02 +01:00
|
|
|
chown -R $app:www-data "$data_dir"
|
2021-04-10 19:38:56 +02:00
|
|
|
|
2023-09-13 18:43:40 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..."
|
|
|
|
|
|
|
|
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
|
|
|
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2023-12-31 10:20:32 +01:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=5
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2022-07-31 19:15:34 +02:00
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
2018-04-04 08:00:27 +02:00
|
|
|
|
2023-12-31 10:20:32 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=10
|
|
|
|
|
2023-12-27 18:10:54 +01:00
|
|
|
ynh_script_progression --message="Reinstalling system configurations..."
|
|
|
|
|
2022-06-10 01:21:56 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2022-02-06 02:01:51 +01:00
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2021-01-02 20:14:02 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2022-02-08 01:41:44 +01:00
|
|
|
mkdir -p "/var/log/$app"
|
2024-02-27 09:15:49 +01:00
|
|
|
touch "/var/log/$app/peertube.log"
|
2022-02-08 01:41:44 +01:00
|
|
|
chown -R $app:$app "/var/log/$app"
|
2022-01-07 04:42:28 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2023-12-27 17:23:14 +01:00
|
|
|
yunohost service add $app --description="Federated video streaming platform" --log="/var/log/$app/$app.log" --needs_exposed_ports $port_rtmp
|
2019-04-03 03:06:16 +02:00
|
|
|
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
2019-06-03 22:37:54 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2023-12-29 21:02:13 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="HTTP server listening on 127.0.0.1"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-04-03 01:12:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|