-
Notifications
You must be signed in to change notification settings - Fork 0
/
bupmonkey.conf.example
84 lines (64 loc) · 2.15 KB
/
bupmonkey.conf.example
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#################################################
# bupmonkey.conf - bupmonkey configuration file #
#################################################
# Logile. The default is /var/log/bup/bupmonkey.log
#
BUP_LOG_FILE="/var/log/bup/kvmtesthost.log"
# Stop if there is a stale lockfile, highly recommended
# Take care of write permissions if bupmonkey is running under
# different user IDs. The defaults are 1 and and /tmp/.bup.
#
#STOP_ON_STALE_LOCKFILE="1"
#STALE_LOCK_DIR="/tmp/.bup"
# Display output of all commands. The default is 1.
#CMD_DISPLAY="1"
# run a bup remote.
#
BUP_REMOTE="1"
# remote server user@host:port
# only in compination with BUP_REMOTE
#
BUP_REMOTE_HOST="[email protected]:1673"
# path to local bup repository
#
BUP_REPO_DIR="/vol/backup/test/kvmtesthost/bup/"
# bup branch name
#
BUP_REPO_NAME="kvmtesthost"
# paths to backup
#
BUP_FILE_NAMES="/vol/backup/"
# preexec commands to execute, see bupbanana
#
BUP_SCRIPT_PREEXEC="ssh -p 22022 [email protected] /root/bin/bupbanana --preexec"
#BUP_SCRIPT_PREEXEC_1=""
# postexec commands to execute, see bupbanana
#
BUP_SCRIPT_POSTEXEC="ssh -p 22022 [email protected] /root/bin/bupbanana --postexec"
#BUP_SCRIPT_POSTEXEC_0=""
#BUP_SCRIPT_POSTEXEC_1=""
# Disable log timestamp prefix, helpful for bubbanana remote commands
# with come with full timestamp output
#
DISABLE_LOG_PREFIX_BUP_SCRIPT="BUP_SCRIPT_POSTEXEC BUP_SCRIPT_PREEXEC"
# Rollback preexec on failure
#
BUP_ROLLBACK="1"
# Bup options. See bup man pages for options.
# In case of remote excludes have to be placed on the remote site
#
# with modification and status output, which can be massive on initial backup
#
BUP_INDEX_OPTIONS="--update --print --modified --status --check --exclude-from=/etc/bup/exclude.conf --exclude-rx-from=/etc/bup/exclude-rx.conf"
#
# standard output
#
#BUP_INDEX_OPTIONS="--exclude-from=/etc/bup/exclude.conf --exclude-rx-from=/etc/bup/exclude-rx.conf"
# display output of bup index command
BUP_INDEX_DISPLAY="1"
# bup save and fsck options. see bup-save and bup-fsck manpage
BUP_SAVE_OPTIONS="--strip --commit --tree"
BUP_FSCK_OPTIONS="--quick"
# bup fsck. The default is 1
BUP_FSCK="1"
#END OF CONFIG