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

78 lines
2.6 KiB
Text
Raw Normal View History

2022-04-30 21:19:50 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2023-04-21 11:51:03 +02:00
#REMOVEME? ynh_clean_setup () {
2022-04-30 21:19:50 +02:00
true
}
# Exit if an error occurs during the execution of the script
2023-04-21 11:51:03 +02:00
#REMOVEME? ynh_abort_if_errors
2022-04-30 21:19:50 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2023-04-21 11:51:03 +02:00
#REMOVEME? ynh_print_info --message="Loading installation settings..."
2022-04-30 21:19:50 +02:00
2023-04-21 11:51:03 +02:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2022-04-30 21:19:50 +02:00
2023-04-21 11:51:03 +02:00
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#REMOVEME? data_dir=$(ynh_app_setting_get --app=$app --key=data_dir)
2022-04-30 21:19:50 +02:00
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2023-04-21 11:51:03 +02:00
ynh_backup --src_path="$install_dir"
2022-04-30 21:19:50 +02:00
#=================================================
# BACKUP THE DATA DIR
#=================================================
2023-04-21 11:51:03 +02:00
ynh_backup --src_path="$data_dir" --is_big
2022-04-30 21:19:50 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP VARIOUS FILES
#=================================================
ynh_backup --src_path="/etc/cron.d/$app"
#=================================================
2022-05-05 16:47:03 +02:00
# BACKUP THE POSTGRESQL DATABASE
2022-04-30 21:19:50 +02:00
#=================================================
2022-05-05 16:47:03 +02:00
ynh_print_info --message="Backing up the PostgreSQL database..."
2022-04-30 21:19:50 +02:00
2022-05-05 16:47:03 +02:00
ynh_psql_dump_db --database="$db_name" > db.sql
2022-04-30 21:19:50 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."