1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/minetest_ynh.git synced 2024-09-03 20:36:00 +02:00
minetest_ynh/scripts/restore

134 lines
4.7 KiB
Text
Raw Normal View History

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
2019-04-21 15:32:30 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_clean_setup () {
2021-05-16 18:15:51 +02:00
ynh_clean_check_starting
2019-10-24 04:11:14 +02:00
}
2019-04-21 15:32:30 +02:00
# Exit if an error occurs during the execution of the script
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_abort_if_errors
2019-04-21 15:32:30 +02:00
2017-10-20 13:09:26 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..."
2017-10-20 13:09:26 +02:00
2024-01-08 13:13:58 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2017-10-20 13:09:26 +02:00
2024-01-08 13:13:58 +01:00
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? data_dir=$(ynh_app_setting_get --app=$app --key=data_dir)
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
2017-10-20 13:09:26 +02:00
2022-06-19 04:22:13 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_script_progression --message="Validating restoration parameters..."
2022-06-19 04:22:13 +02:00
2024-01-08 13:13:58 +01:00
#REMOVEME? test ! -d $install_dir \
|| ynh_die --message="There is already a directory: $install_dir "
2022-06-19 04:22:13 +02:00
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# STANDARD RESTORATION STEPS
2017-10-20 13:45:31 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# RECREATE THE DEDICATED USER
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_script_progression --message="Recreating the dedicated system user..."
2019-04-21 15:32:30 +02:00
# Create the dedicated user (if not existing)
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2019-04-21 15:32:30 +02:00
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 750 "$install_dir"
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
mkdir -p $data_dir
2022-06-19 04:22:13 +02:00
2024-01-08 13:13:58 +01:00
chmod 750 "$data_dir"
chmod -R o-rwx "$data_dir"
chown -R $app:$app "$data_dir"
2022-06-19 04:22:13 +02:00
2019-04-21 15:32:30 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_script_progression --message="Reinstalling dependencies..."
2019-04-21 15:32:30 +02:00
# Define and install dependencies
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
2019-04-21 15:32:30 +02:00
2021-05-16 18:15:51 +02:00
#=================================================
# RESTORE VARIOUS FILES
#=================================================
ynh_script_progression --message="Restoring various files..."
2022-06-19 04:22:13 +02:00
# Open the port
ynh_script_progression --message="Configuring firewall..."
ynh_exec_warn_less yunohost firewall allow --no-upnp UDP $port
2021-05-16 18:15:51 +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-03-13 18:11:28 +01:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the logrotate configuration..."
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"
2017-10-20 13:45:31 +02:00
#=================================================
2021-05-16 18:15:51 +02:00
# INTEGRATE SERVICE IN YUNOHOST
2017-10-20 13:45:31 +02:00
#=================================================
2021-05-16 18:15:51 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2019-04-21 15:32:30 +02:00
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
2021-05-16 18:15:51 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/minetest.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"