forked from alexjurkiewicz/acts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acts.conf
37 lines (30 loc) · 888 Bytes
/
acts.conf
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
#!/bin/sh
# acts configuration file
# backuptargets
# Space-separated list of directories to backup, relative to /. This is a required option.
# Default: unset
backuptargets="var etc home root"
# tarsnap
# What command to call for 'tarsnap'.
# Default: tarsnap
tarsnap="nice -n19 ionice -c3 tarsnap"
# verbose
# -1 silent. 0=normal. 1=verbose. 2=debug.
# Default: 0
verbose=1
# hostname
# The machine name prefixed to created archives.
# Default: $(hostname -s)
#hostname=$(hostname)
# prebackupscript
# This script is run before backups are created. Make sure it's executable.
# Default: unset
#prebackupscript=/root/acts-pre.sh
# postbackupscript
# This script is run after acts is otherwise finished. Make sure it's executable.
# Default: unset
#postbackupscript=/root/acts-post.sh
# lockfile
# Where acts should write its lockfile.
# Default: /var/run/acts
#lockfile=/tmp/acts