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

67 lines
2.2 KiB
Text
Raw Normal View History

2019-09-20 12:55:12 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-08-21 17:30:03 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-09-20 12:55:12 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2021-08-21 17:30:03 +02:00
true
2019-09-20 12:55:12 +02:00
}
2021-08-21 17:30:03 +02:00
# Exit if an error occurs during the execution of the script
2019-09-20 12:55:12 +02:00
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2021-08-21 17:30:03 +02:00
ynh_print_info --message="Loading installation settings..."
2019-09-20 12:55:12 +02:00
app=$YNH_APP_INSTANCE_NAME
2021-08-21 17:30:03 +02:00
2019-09-20 12:55:12 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name_app=$(ynh_app_setting_get --app=$app --key=db_name_app)
2021-08-21 17:30:03 +02:00
db_name_web=$(ynh_app_setting_get --app=$app --key=db_name_web)
2019-09-20 12:55:12 +02:00
#=================================================
2021-08-21 17:30:03 +02:00
# DECLARE DATA AND CONF FILES TO BACKUP
2019-09-20 12:55:12 +02:00
#=================================================
2021-08-21 17:30:03 +02:00
ynh_print_info --message="Declaring files to be backed up..."
2019-09-20 12:55:12 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# SPECIFIC BACKUP
#=================================================
2021-08-21 17:30:03 +02:00
# BACKUP VARIOUS FILES
2019-09-20 12:55:12 +02:00
#=================================================
2021-08-21 17:30:03 +02:00
ynh_backup --src_path="/etc/$app"
2019-09-20 12:55:12 +02:00
#=================================================
2021-08-21 17:30:03 +02:00
# BACKUP THE POSTGRESQL DATABASE
2019-09-20 12:55:12 +02:00
#=================================================
2021-08-21 17:30:03 +02:00
ynh_print_info --message="Backing up the PostgreSQL database..."
2019-09-20 12:55:12 +02:00
2021-08-21 17:30:03 +02:00
ynh_psql_dump_db --database="$db_name_app" > db_app.sql
ynh_psql_dump_db --database="$db_name_web" > db_web.sql
2019-09-20 12:55:12 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-08-21 17:30:03 +02:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."