mirror of https://github.com/pditzel/dbb.git

Patrick Ditzel
07.19.2022 5bbe9ac2ab8975efea6982747944416b607e9eb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
################################################################################
# Configure the einvironment:
################################################################################
#
################################################################################
# Should dbbackup log to syslog (TRUE | FALSE)
# Default is TURE
 
ENABLE_SYSLOG=TRUE
 
################################################################################
# Enable debugout
# Default is FALSE
 
ENABLE_DEBUG=TRUE
 
################################################################################
# Where to backup datafiles?
 
BACKUP_DIR=/home/backupuser/database_backups
 
################################################################################
# We need a tmpdir
 
TMP_DIR=/tmp/databases
 
################################################################################
# Which user is running dbbackup?
 
BACKUPUSER=backupuser
 
################################################################################
# Should a history of backuped files kept?
 
KEEP_BACKUP_FILES=TRUE
 
# How many days should these files kept?
 
BACKUP_FILES_DAYS=14