2017-10-20 13:09:26 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# GENERIC START
|
2017-10-20 13:09:26 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-16 18:15:51 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-04-21 15:32:30 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-10-20 13:09:26 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-20 13:45:31 +02:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2019-04-21 15:32:30 +02:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
|
|
|
|
2024-01-08 13:13:58 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2019-04-21 15:32:30 +02:00
|
|
|
|
2024-01-08 13:13:58 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2019-04-21 15:32:30 +02:00
|
|
|
|
2022-06-19 04:22:13 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the data directory..."
|
|
|
|
|
2024-01-08 13:13:58 +01:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2022-06-19 04:22:13 +02:00
|
|
|
|
2024-01-08 13:13:58 +01:00
|
|
|
chown -R $app:$app "$data_dir"
|
2022-06-19 04:22:13 +02:00
|
|
|
|
2017-10-20 13:45:31 +02:00
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# RESTORE SYSTEMD
|
2017-10-20 13:45:31 +02:00
|
|
|
#=================================================
|
2020-12-03 11:19:43 +01:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..."
|
2017-10-20 13:45:31 +02:00
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2020-12-03 11:19:43 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2017-10-20 13:45:31 +02:00
|
|
|
|
2022-06-19 04:22:13 +02:00
|
|
|
mkdir /var/log/$app -p
|
|
|
|
chown -R $app: /var/log/$app
|
|
|
|
|
2022-03-13 18:11:28 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2021-05-16 18:15:51 +02:00
|
|
|
yunohost service add $app --description="Voxel game engine and game" --log="/var/log/$app/$app.log" --needs_exposed_ports="$port"
|
2019-04-21 15:32:30 +02:00
|
|
|
|
2020-12-03 11:19:43 +01:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2020-12-03 11:19:43 +01:00
|
|
|
#=================================================
|
2021-05-16 18:15:51 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2020-12-03 11:19:43 +01:00
|
|
|
|
2024-01-08 15:00:53 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match="listening on"
|
2017-10-20 13:09:26 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# GENERIC FINALIZATION
|
2017-10-20 13:09:26 +02:00
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# END OF SCRIPT
|
2017-10-20 13:09:26 +02:00
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
|
2020-12-03 11:19:43 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|