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/backup

85 lines
2.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
#=================================================
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
#=================================================
# 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 installation settings..."
2017-10-20 13:09:26 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-04-21 15:32:30 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
postgresql=$(ynh_app_setting_get --app=$app --key=postgresql)
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# STANDARD BACKUP STEPS
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# BACKUP THE APP MAIN DIR
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# Stop Minetest before backup...
systemctl stop minetest
ynh_print_info --message="Backing up the main app directory..."
ynh_backup --src_path="$final_path"
2017-10-20 13:09:26 +02:00
#=================================================
2019-04-21 15:32:30 +02:00
# BACKUP THE HOME DIR
2017-10-20 13:09:26 +02:00
#=================================================
2019-08-15 14:21:00 +02:00
ynh_print_info --message="Backing up Minetest data..."
2017-10-20 13:09:26 +02:00
2019-04-21 15:32:30 +02:00
ynh_backup --src_path="/home/yunohost.app/$app"
2017-10-20 13:09:26 +02:00
2019-04-21 15:32:30 +02:00
#=================================================
# BACKUP THE POSTGRESQL DATABASE
#=================================================
if [ $postgresql -eq 1 ]
then
ynh_print_info --message="Backing up the PostgreSQL database..."
2017-10-20 13:09:26 +02:00
2019-04-21 15:32:30 +02:00
ynh_psql_dump_db --database="$db_name" > db.sql
fi
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
ynh_print_info --message="Backing up logrotate configuration..."
ynh_backup --src_path="/etc/logrotate.d/$app"
#=================================================
# BACKUP SYSTEMD
#=================================================
ynh_print_info --message="Backing up systemd configuration..."
ynh_backup --src_path="/etc/systemd/system/$app.service"
#=================================================
# END OF SCRIPT
#=================================================
# Restart Minetest
systemctl start minetest
2017-10-20 13:09:26 +02:00
2019-04-21 15:32:30 +02:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."