Imported Upstream version 3.3.1
[debian/amanda] / example / template.d / amanda-tape-changer.conf.in
1 org "@DEFAULT_CONFIG@"  # your organization name for reports
2 mailto "@CLIENT_LOGIN@" # space separated list of operators at your site
3 dumpcycle 1 week        # the number of days in the normal dump cycle
4 runspercycle 5          # the number of amdump runs in dumpcycle days
5                         # (1 week * 5 amdump runs per week -- just weekdays)
6 tapecycle 10 tapes      # the number of tapes in rotation
7                         # 1 week (dumpcycle) times 5 tapes per week (just
8                         # the weekdays) plus a few to handle errors that
9                         # need amflush and so we do not overwrite the full
10                         # backups performed at the beginning of the previous
11                         # cycle
12 runtapes 1              # number of tapes to be used in a single run of amdump
13
14 define changer my_robot {
15     tpchanger "chg-robot:/dev/sg1"
16     property "tape-device" "0=tape:/dev/nst0"
17 }
18 tpchanger "my_robot"
19 tapetype HP-DAT                 # what kind of tape it is (see tapetypes below)
20
21 holdingdisk hd2 {
22     directory "/var/lib/amanda/holdings/@DEFAULT_CONFIG@"
23     use 1000 Mb
24     }
25
26 labelstr "^@DEFAULT_CONFIG@-[0-9][0-9]*$"       # label constraint regex: all tapes must match
27
28 dtimeout 1800           # number of idle seconds before a dump is aborted.
29 ctimeout 30             # maximum number of seconds that amcheck waits
30                         # for each client host
31 etimeout 300            # number of seconds per filesystem for estimates.
32
33 define dumptype global {
34         comment "Global definitions"
35         auth "bsdtcp"
36 }
37
38 #define application-tool and dumptype for the amgtar application
39 define application-tool app_amgtar {
40     comment "amgtar"
41     plugin  "amgtar"
42     #property "GNUTAR-PATH" "/path/to/gtar"
43     #property "GNUTAR-LISTDIR" "/path/to/gnutar_list_dir"
44 }
45
46 define dumptype gui-base {
47         global
48         program "APPLICATION"
49         application "app_amgtar"
50         comment "gui base dumptype dumped with tar"
51         compress none
52         index yes
53 }
54
55 includefile "./advanced.conf"
56 includefile "@CONFIG_DIR@/template.d/dumptypes"
57 includefile "@CONFIG_DIR@/template.d/tapetypes"
58