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