feat(backup): Introduce backup hook script and adjust configuration
This commit is contained in:
@@ -12,21 +12,21 @@ HDBSQL_PATH="/usr/sap/hdbclient/hdbsql"
|
||||
USER_KEY="CRONKEY"
|
||||
|
||||
# hdbuserstore key for the SYSTEMDB user
|
||||
SYSTEMDB_USER_KEY="SYSTEMDB_KEY"
|
||||
SYSTEMDB_USER_KEY="SYSTEMKEY"
|
||||
|
||||
# --- Backup Settings ---
|
||||
|
||||
# The base directory where all backup files and directories will be stored.
|
||||
# Ensure this directory exists and that the OS user running the script has
|
||||
# write permissions to it.
|
||||
BACKUP_BASE_DIR="/hana/backups/automated"
|
||||
BACKUP_BASE_DIR="/hana/shared/backup"
|
||||
|
||||
# Specify the type of backup to perform on script execution.
|
||||
# Options are:
|
||||
# 'schema' - Performs only the schema export.
|
||||
# 'tenant' - Performs only the tenant data backup.
|
||||
# 'all' - Performs both the schema export and the tenant backup.
|
||||
BACKUP_TYPE="all"
|
||||
BACKUP_TYPE="tenant"
|
||||
|
||||
# Set to 'true' to also perform a backup of the SYSTEMDB
|
||||
BACKUP_SYSTEMDB=true
|
||||
|
||||
Reference in New Issue
Block a user