1#
2# Default Bareos Storage Daemon Configuration file
3#
4#  For Bareos release @VERSION@ (@DATE@) -- @DISTNAME@ @DISTVER@
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 the Bareos director has corresponding changes.
11#
12
13Storage {                             # definition of myself
14  Name = @basename@-sd
15  Maximum Concurrent Jobs = 20
16
17  # remove comment from "Plugin Directory" to load plugins from specified directory.
18  # if "Plugin Names" is defined, only the specified plugins will be loaded,
19  # otherwise all storage plugins (*-sd.so) from the "Plugin Directory".
20  #
21  # Plugin Directory = "@plugindir@"
22  # Plugin Names = ""
23}
24
25#
26# List Directors who are permitted to contact Storage daemon
27#
28Director {
29  Name = @basename@-dir
30  Password = "@sd_password@"
31}
32
33#
34# Restricted Director, used by tray-monitor to get the
35#   status of the storage daemon
36#
37Director {
38  Name = @basename@-mon
39  Password = "@mon_sd_password@"
40  Monitor = yes
41}
42
43#
44# Devices supported by this Storage daemon
45# To connect, the Director's bareos-dir.conf must have the same Name and MediaType.
46#
47Device {
48  Name = FileStorage
49  Media Type = File
50  Archive Device = @archivedir@
51  LabelMedia = yes;                   # lets Bareos label unlabeled media
52  Random Access = yes;
53  AutomaticMount = yes;               # when device opened, read it
54  RemovableMedia = no;
55  AlwaysOpen = no;
56}
57
58#
59# include additional configuration files, if required
60#
61
62# eg.
63#@/etc/bareos/bareos-sd.d/device-gluster.conf
64
65
66#
67# Send all messages to the Director,
68# mount messages also are sent to the email address
69#
70Messages {
71  Name = Standard
72  director = @basename@-dir = all
73}
74