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

119 lines
3.9 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
#=================================================
2019-04-21 15:32:30 +02:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
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
#=================================================
2019-10-24 04:11:14 +02:00
ynh_clean_setup () {
ynh_clean_check_starting # Need for the param line_match of ynh_systemd_action
}
2019-04-21 15:32:30 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-10-20 13:09:26 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2019-04-21 15:32:30 +02:00
ynh_print_info --message="Loading settings..."
2017-10-20 13:09:26 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-04-21 15:32:30 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
2019-10-24 04:11:14 +02:00
path_url=$(ynh_app_setting_get --app=$app --key=path)
2019-04-21 15:32:30 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# CHECK IF THE APP CAN BE RESTORED
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
ynh_print_info --message="Validating restoration parameters..."
2019-10-24 04:11:14 +02:00
ynh_webpath_available --app=$app --domain=$domain --path_url=$path_url
2019-04-21 15:32:30 +02:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# STANDARD RESTORATION STEPS
#=================================================
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_print_info --message="Restoring the app main directory..."
2017-10-20 13:45:31 +02:00
2019-04-21 15:32:30 +02:00
ynh_restore_file --origin_path="$final_path"
2017-10-20 13:45:31 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# RECREATE THE DEDICATED USER
#=================================================
ynh_print_info --message="Recreating the dedicated system user..."
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir=/home/yunohost.app/$app --use_shell
# Restore home_path
ynh_restore_file --origin_path="$home_path"
2017-10-20 13:45:31 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# RESTORE USER RIGHTS
#=================================================
# Restore permissions on app files
chown -R root: $final_path
2019-10-23 12:06:42 +02:00
chown -R $app: /home/yunohost.app/$app
2019-04-21 15:32:30 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
ynh_print_info --message="Reinstalling dependencies..."
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
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
#=================================================
2019-04-21 15:32:30 +02:00
ynh_print_info --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"
systemctl enable $app.service
2017-10-20 13:45:31 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# ADVERTISE SERVICE IN ADMIN PANEL
2017-10-20 13:45:31 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
2019-10-24 04:11:14 +02:00
yunohost service add $app --log "/var/log/$app/minetest.log"
2019-04-21 15:32:30 +02:00
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# RESTORE THE LOGROTATE CONFIGURATION
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
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
# RELOAD MINETEST
#=================================================
ynh_print_info --message="Reloading minetest..."
2017-10-20 13:09:26 +02:00
ynh_systemd_action --service_name=$app --action="restart" --log_path="/var/log/$app/$app.log"
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
ynh_print_info --message="Restoration completed for $app"