]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/bacula-dir-tape.conf.in
5907f322b51c0d774f9f8dc5d4d38293837b1b67
[bacula/bacula] / regress / scripts / bacula-dir-tape.conf.in
1 #
2 # Default Bacula Director Configuration file
3 #
4 #  The only thing that MUST be changed is to add one or more
5 #   file or directory names in the Include directive of the
6 #   FileSet resource.
7 #
8 #  For Bacula release 1.30 (12 April 2003) -- redhat 7.3
9 #
10 #  You might also want to change the default email address
11 #   from root to your address.  See the "mail" and "operator"
12 #   directives in the Messages resource.
13 #
14
15 Director {                            # define myself
16   Name = @hostname@-dir
17   DIRport = 8101                # where we listen for UA connections
18   QueryFile = "@scriptdir@/query.sql"
19   WorkingDirectory = "@working_dir@"
20   PidDirectory = "@piddir@"
21   Maximum Concurrent Jobs = 4
22   Password = "pNvX1WiXnwv2C/F7E52LGvw6rKjbbPvu2kyuPa9pVaL3"
23   Messages = Standard
24 }
25
26 #
27 # Define the main nightly save backup job
28 #   By default, this job will back up to disk in /tmp
29 Job {
30   Name = "NightlySave"
31   Type = Backup
32   Client=@hostname@-fd 
33   FileSet="Full Set"
34   Storage = DDS-4
35   Messages = Standard
36   Pool = Default
37   Write Bootstrap = "@working_dir@/NightlySave.bsr"
38   Maximum Concurrent Jobs = 4
39 }
40
41
42 # Standard Restore template, to be changed by Console program
43 Job {
44   Name = "RestoreFiles"
45   Type = Restore
46   Client=@hostname@-fd 
47   FileSet="Full Set"
48   Storage = DDS-4
49   Messages = Standard
50   Pool = Default
51   Where = /tmp/bacula-restores
52 }
53
54
55 # List of files to be backed up
56 FileSet {
57   Name = "Full Set"
58   Include = signature=MD5 { 
59     </tmp/file-list
60   }
61 }
62
63
64 #
65 # When to do the backups, full backup on first sunday of the month,
66 #  differential (i.e. incremental since full) every other sunday,
67 #  and incremental backups other days
68 Schedule {
69   Name = "WeeklyCycle"
70   Run = Full 1st sun at 1:05
71   Run = Differential 2nd-5th sun at 1:05
72   Run = Incremental mon-sat at 1:05
73 }
74
75 # Client (File Services) to backup
76 Client {
77   Name = @hostname@-fd
78   Address = @hostname@
79   FDPort = 8102
80   Catalog = MyCatalog
81   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"          # password for FileDaemon
82   File Retention = 30d                # 30 days
83   Job Retention = 180d                # six months
84   AutoPrune = yes                     # Prune expired Jobs/Files
85   Maximum Concurrent Jobs = 4
86 }
87
88 # Definition of DDS tape storage device
89 Storage {
90   Name = DDS-4
91   Address = @hostname@                # N.B. Use a fully qualified name here
92   SDPort = 8103
93   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"          # password for Storage daemon
94   Device = DDS-4                      # must be same as Device in Storage daemon
95   Media Type = DDS-4                  # must be same as MediaType in Storage daemon
96   AutoChanger = yes
97   Maximum Concurrent Jobs = 4
98 }
99
100
101 # Generic catalog service
102 Catalog {
103   Name = MyCatalog
104   dbname = bacula; user = bacula; password = ""
105 }
106
107 # Reasonable message delivery -- send most everything to email address
108 #  and to the console
109 Messages {
110   Name = Standard
111   mailcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
112   operatorcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
113   MailOnError = @job_email@ = all
114   operator = @job_email@ = mount
115   console = all, !skipped
116 #
117 # WARNING! the following will create a file that you must cycle from
118 #          time to time as it will grow indefinitely. However, it will
119 #          also keep all your messages if the scroll off the console.
120 #
121   append = "@working_dir@/log" = all, !skipped
122 }
123
124     
125 # Default pool definition
126 Pool {
127   Name = Default
128   Pool Type = Backup
129   Recycle = yes                       # Bacula can automatically recycle Volumes
130   AutoPrune = yes                     # Prune expired volumes
131   Volume Retention = 365d             # one year
132   Accept Any Volume = yes             # write on any volume in the pool
133 }