1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/funkwhale_ynh.git synced 2024-09-03 18:36:24 +02:00
funkwhale_ynh/scripts/backup

83 lines
2.8 KiB
Text
Raw Normal View History

2018-05-11 21:38:56 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-04-03 14:35:09 +02:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2018-05-11 21:38:56 +02:00
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2019-04-12 16:58:46 +02:00
ynh_clean_setup () {
ynh_clean_check_starting
}
2018-05-11 21:38:56 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-14 22:55:26 +02:00
ynh_print_info --message="Loading installation settings..."
2018-05-11 21:38:56 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-05-14 22:55:26 +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)
2018-05-11 21:38:56 +02:00
#=================================================
2020-12-04 16:56:37 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2018-05-11 21:38:56 +02:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2019-05-14 22:55:26 +02:00
backup_core_only=$(ynh_app_setting_get --app="$app" --key=backup_core_only)
# If backup_core_only have any value in the settings.yml file, do not backup the data directory
if [ -z "$backup_core_only" ]
then
2019-05-14 22:55:26 +02:00
ynh_backup --src_path="$final_path"
else
echo "Data dir will not be saved, because backup_core_only is set." >&2
2019-05-14 22:55:26 +02:00
ynh_backup --src_path="$final_path/code"
fi
2018-05-11 21:38:56 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2019-05-14 22:55:26 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_backup --src_path="/etc/nginx/conf.d/$domain.conf"
2018-05-11 21:38:56 +02:00
#=================================================
2019-04-03 14:35:09 +02:00
# BACKUP THE POSTGRESQL DATABASE
2018-05-11 21:38:56 +02:00
#=================================================
2019-05-14 22:55:26 +02:00
ynh_print_info --message="Backing up the PostgreSQL database..."
2018-05-11 21:38:56 +02:00
2019-05-14 22:55:26 +02:00
ynh_psql_dump_db --database="$db_name" > db.sql
2018-05-11 21:38:56 +02:00
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP SYSTEMD
#=================================================
2019-05-14 22:55:26 +02:00
ynh_backup --src_path="/etc/systemd/system/$app-beat.service"
ynh_backup --src_path="/etc/systemd/system/$app-server.service"
ynh_backup --src_path="/etc/systemd/system/$app-worker.service"
ynh_backup --src_path="/etc/systemd/system/$app.target"
2019-04-03 14:35:09 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-14 22:55:26 +02:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."