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  Maximum Concurrent Jobs = 100
17}
18
19#
20# List Directors who are permitted to contact Storage daemon
21#
22Director {
23  Name = @hostname@-dir
24  Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
25}
26
27#
28# Devices supported by this Storage daemon
29# To connect, the Director's bareos-dir.conf must have the
30#  same Name and MediaType.
31#
32
33Device {
34  Name = tape                     #
35  Media Type = tape
36  Archive Device = @tape_drive@
37  AutomaticMount = yes;               # when device opened, read it
38  AlwaysOpen = yes;
39  RemovableMedia = yes;
40  @@confdir@/tape_options
41# Maximum File Size = 1000000
42# MaximumVolumeSize = 400M
43# Minimum Block Size = 64512
44# Maximum Block Size = 64512
45}
46
47#
48# Send all messages to the Director,
49# mount messages also are sent to the email address
50#
51Messages {
52  Name = Standard
53  director = @hostname@-dir = all, !terminate
54  append = "@working_dir@/log1.sd" = all
55}
56