1#
2# Bareos Storage Daemon Configuration file
3#
4# For Bareos release @VERSION@ (@DATE@) -- @DISTNAME@ @DISTVER@
5#
6# "Global" Storage daemon configuration specifications
7#
8Storage {
9  Name = "Storage daemon"
10  Address = @hostname@
11  SDPort = @sd_port@                  # Directors port
12  WorkingDirectory = "@working_dir@"
13  Pid Directory = "@piddir@"
14}
15
16#
17# List Directors who are permitted to contact Storage daemon
18#
19Director {
20  Name = @hostname@-dir
21  Password = local_storage_password
22}
23
24#
25# Devices supported by this Storage daemon
26# To connect, the Director must have the same Name and MediaType,
27#  which are sent to the File daemon
28#
29# For the settings of Block and File Sizes, see:
30# http://www.bareos.org/en/Whitepapers/articles/Speed_Tuning_of_Tape_Drives.html
31
32Device {
33  Name = "LTO-6"
34  Media Type = LTO
35  Archive Device = /dev/nst0
36  Minimum Block Size = 1048576
37  Maximum Block Size = 1048576
38  Maximum File Size = 50g             # 20g for LTO4, 40g for LTO5
39  AutomaticMount = yes;               # when device opened, read it
40  AlwaysOpen = yes;
41  RemovableMedia = yes;
42}
43
44#Device {
45#  Name = "Exabyte 8mm"
46#  Media Type = "8mm"
47#  Archive Device = /dev/nst1
48#  Hardware end of medium = No;
49## LabelMedia = yes;                   # lets Bareos label unlabeled media
50#  AutomaticMount = yes;               # when device opened, read it
51#  AlwaysOpen = Yes;
52#  RemovableMedia = yes;
53#}
54
55Messages {
56  Name = Standard
57  director = @hostname@-dir = all
58  operator = @dump_email@ = mount
59}
60