]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/bacula-sd-fifo.conf.in
Make out of freespace non-fatal for removable devices -- i.e. behaves like tape
[bacula/bacula] / regress / scripts / bacula-sd-fifo.conf.in
1 #
2 # Default Bacula Storage Daemon Configuration file
3 #
4 #  For Bacula release 1.33
5 #
6 # You may need to change the name of your tape drive
7 #   on the "Archive Device" directive in the Device
8 #   resource.  If you change the Name and/or the 
9 #   "Media Type" in the Device resource, please ensure
10 #   that dird.conf has corresponding changes.
11 #
12
13 Storage {                             # definition of myself
14   Name = @hostname@-sd
15   SDPort = @sdport@                  # Director's port      
16   WorkingDirectory = "@working_dir@"
17   Pid Directory = "@piddir@"
18   Subsys Directory = "@subsysdir@"
19 }
20
21 #
22 # List Directors who are permitted to contact Storage daemon
23 #
24 Director {
25   Name = @hostname@-dir
26   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
27 }
28
29 Device {
30   Name = Dummy
31   Media Type = Dummy
32   Device Type = Fifo
33   Archive Device = /dev/null
34   LabelMedia = yes
35   Random Access = no
36   AutomaticMount = no
37   RemovableMedia = no
38   MaximumOpenWait = 60
39   AlwaysOpen = no
40 }
41
42
43 # Send all messages to the Director, 
44 # mount messages also are sent to the email address
45 #
46 Messages {
47   Name = Standard
48   director = @hostname@-dir = all, !terminate
49 }