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
26#
27# Devices supported by this Storage daemon
28# To connect, the Director's bareos-dir.conf must have the
29#  same Name and MediaType.
30#
31
32Device {
33  Name = tape                     #
34  Media Type = tape
35  Archive Device = @tape_drive@
36  AutomaticMount = yes;               # when device opened, read it
37  AlwaysOpen = yes;
38  RemovableMedia = yes;
39  @@confdir@/tape_options
40# Maximum File Size = 1000000
41# MaximumVolumeSize = 400M
42  Label Type = ansi
43}
44
45#
46# Send all messages to the Director,
47# mount messages also are sent to the email address
48#
49Messages {
50  Name = Standard
51  director = @hostname@-dir = all, !terminate
52}
53