1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/peertube_ynh.git synced 2024-09-03 19:56:29 +02:00
peertube_ynh/scripts/restore

78 lines
2.7 KiB
Text
Raw Normal View History

#!/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-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"
2023-03-21 23:12:02 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
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
#=================================================
2021-06-29 22:13:41 +02:00
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2023-03-21 23:33:23 +01:00
ynh_script_progression --message="Reinstalling dependencies..."
2022-07-31 19:15:34 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
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
2018-03-31 12:09:27 +02:00
#=================================================
2019-04-03 01:12:03 +02:00
# RESTORE THE POSTGRESQL DATABASE
2018-03-31 12:09:27 +02:00
#=================================================
2023-03-21 23:33:23 +01:00
ynh_script_progression --message="Restoring the PostgreSQL database..."
2018-03-31 12:09:27 +02:00
2019-06-03 22:37:54 +02:00
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
2018-03-31 12:09:27 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Restoring the systemd configuration..."
2019-06-03 22:37:54 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
2022-02-08 01:41:44 +01:00
mkdir -p "/var/log/$app"
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-03-21 23:33:23 +01:00
yunohost service add $app --description="$app daemon for Peertube" --log="/var/log/$app/$app.log" --needs_exposed_ports $port_rtmp
2019-04-03 03:06:16 +02:00
#=================================================
2019-06-03 22:37:54 +02:00
# START SYSTEMD SERVICE
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Starting a systemd service..."
2023-08-04 02:53:38 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Started"
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"