]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/bacula-dir.conf.testrunscript.in
Extend idea of Prefer Mounted Volumes to mean a volume about
[bacula/bacula] / regress / scripts / bacula-dir.conf.testrunscript.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.39.27 (24 October 2006) -- debian testing/unstable
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   SubSysDirectory = "@subsysdir@"
22   Maximum Concurrent Jobs = 4
23   Password = "pNvX1WiXnwv2C/F7E52LGvw6rKjbbPvu2kyuPa9pVaL3"         # Console password
24   Messages = Standard
25 }
26
27 JobDefs {
28   Name = "DefaultJob"
29   Type = Backup
30   Level = Incremental
31   Client = @hostname@-fd 
32   FileSet = FS_TESTJOB
33   Storage = File
34   Messages = Standard
35   Pool = Default
36   Priority = 10
37   Maximum Concurrent Jobs = 16
38 }
39
40 FileSet {
41  Name = FS_TESTJOB
42  Include {
43    File=</tmp/file-list
44  }
45 }
46
47 #dir: BeforeJob: run command "/bin/echo RunBeforeJob"
48 #fd: ClientRunBeforeJob: ClientRunBeforeJob
49 #fd: ClientAfterJob: run command "/bin/echo ClientRunAfterJob"
50 #dir: AfterJob: run command "/bin/echo RunAfterJob"
51
52 Job {
53   Name = "RUN_ALL_OK"
54   JobDefs = DefaultJob
55   FileSet = FS_TESTJOB
56   RunBeforeJob = "/bin/echo RunBeforeJob"
57   ClientRunBeforeJob = "/bin/echo ClientRunBeforeJob"
58   Run After Job = "/bin/echo RunAfterJob"
59   ClientRunAfterJob = "/bin/echo ClientRunAfterJob"
60 }
61
62 #After job are after before job
63 Job {
64   Name = "RUN_DIR_FAILED_BUG"
65   FileSet = FS_TESTJOB  
66   JobDefs = DefaultJob
67   Run After Failed Job = "/bin/echo RunAfterFailedJob"
68   RunBeforeJob = "/bin/false"
69 }
70
71 #@hostname@-dir: BeforeJob: run command "/bin/false"
72 #@hostname@-dir: BeforeJob: RunAfterFailedJob
73 Job {
74   Name = "RUN_DIR_FAILED"
75   FileSet = FS_TESTJOB  
76   JobDefs = DefaultJob
77   RunBeforeJob = "/bin/false RUN_DIR_FAILED"
78   Run After Failed Job = "/bin/echo RunAfterFailedJob"
79 }
80
81 #@hostname@-fd: ClientBeforeJob: run command "/bin/false RUN_FD_FAILED1"
82 #@hostname@-fd: ClientBeforeJob: run command "/bin/false RUN_FD_FAILED2"
83 #@hostname@-dir: AfterJob: run command "/bin/echo RunAfterFailedJob"
84 Job {
85   Name = "RUN_FD_FAILED"
86   FileSet = FS_TESTJOB  
87   JobDefs = DefaultJob
88   RunScript {
89     Command = "/bin/false RUN_FD_FAILED1"
90     abortjobonerror = no
91     RunsWhen = Before
92   }
93   RunScript {
94     Command = "/bin/false RUN_FD_FAILED2"
95     abortjobonerror = yes
96     RunsWhen = Before
97   }
98
99   Run After Failed Job = "/bin/echo RunAfterFailedJob"
100 }
101
102 #@hostname@-fd: ClientBeforeJob: run command "/bin/false RUN_FD_FAILED1"
103 #we dont execute FAILED2 
104 #@hostname@-dir: AfterJob: run command "/bin/echo RunAfterFailedJob"
105 Job {
106   Name = "RUN_FD_FAILED2"
107   FileSet = FS_TESTJOB  
108   JobDefs = DefaultJob
109   RunScript {
110     Command = "/bin/false RUN_FD_FAILED1"
111     abortjobonerror = yes
112     RunsWhen = Before
113   }
114   RunScript {
115     Command = "/bin/false RUN_FD_FAILED2"
116     abortjobonerror = yes
117     RunsWhen = Before
118   }
119   RunScript {
120     Command = "/bin/false RUN_FD_FAILED3"
121     abortjobonerror = yes
122     RunsOnFailure = yes
123     RunsWhen = Before
124   }
125
126   Run After Failed Job = "/bin/echo RunAfterFailedJob"
127 }
128
129 #@hostname@-fd: ClientBeforeJob: run command "/bin/false RUN_FD_WARNING"
130 #Backup OK -- with warnings
131 Job {
132   Name = "RUN_FD_WARNING"
133   FileSet = FS_TESTJOB  
134   JobDefs = DefaultJob
135   RunScript {
136     Command = "/bin/false RUN_FD_WARNING"
137     abortjobonerror = no
138     RunsWhen = Before
139   }
140   Run After Failed Job = "/bin/echo RunAfterFailedJob"
141 }
142
143 # Client (File Services) to backup
144 Client {
145   Name = @hostname@-fd
146   Address = @hostname@
147   FDPort = 8102
148   Catalog = MyCatalog
149   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"          # password for FileDaemon
150   File Retention = 30d                # 30 days
151   Job Retention = 180d                # six months
152   AutoPrune = yes                     # Prune expired Jobs/Files
153   Maximum Concurrent Jobs = 4
154 }
155
156 # Definiton of file storage device
157 Storage {
158   Name = File
159   Address = @hostname@                # N.B. Use a fully qualified name here
160   SDPort = 8103
161   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
162   Device = FileStorage
163   Media Type = File
164   Maximum Concurrent Jobs = 4
165 }
166
167 # Generic catalog service
168 Catalog {
169   Name = MyCatalog
170   dbname = regress; user = regress; password = ""
171 }
172
173
174 Messages {
175   Name = Standard
176   console = all, !skipped, !saved
177 }
178
179 # Default pool definition
180 Pool {
181   Name = Default
182   Pool Type = Backup
183   Recycle = yes                       # Bacula can automatically recycle Volumes
184   AutoPrune = yes                     # Prune expired volumes
185   Volume Retention = 365d             # one year
186 }