/usr/lib/bareos/defaultconfigs/bareos-sd.conf is in bareos-storage 14.2.6-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | #
# Default Bareos Storage Daemon Configuration file
#
# For Bareos release 14.2.6 (16 Nov 2015) -- ubuntu Ubuntu Xenial Xerus (development branch)
#
# You may need to change the name of your tape drive
# on the "Archive Device" directive in the Device
# resource. If you change the Name and/or the
# "Media Type" in the Device resource, please ensure
# that dird.conf has corresponding changes.
#
Storage { # definition of myself
Name = XXX_REPLACE_WITH_LOCAL_HOSTNAME_XXX-sd
Maximum Concurrent Jobs = 20
# remove comment from "Plugin Directory" to load plugins from specified directory.
# if "Plugin Names" is defined, only the specified plugins will be loaded,
# otherwise all storage plugins (*-sd.so) from the "Plugin Directory".
#
# Plugin Directory = /usr/lib/bareos/plugins
# Plugin Names = ""
}
#
# List Directors who are permitted to contact Storage daemon
#
Director {
Name = XXX_REPLACE_WITH_LOCAL_HOSTNAME_XXX-dir
Password = "XXX_REPLACE_WITH_STORAGE_PASSWORD_XXX"
}
#
# Restricted Director, used by tray-monitor to get the
# status of the storage daemon
#
Director {
Name = XXX_REPLACE_WITH_LOCAL_HOSTNAME_XXX-mon
Password = "XXX_REPLACE_WITH_STORAGE_MONITOR_PASSWORD_XXX"
Monitor = yes
}
#
# Devices supported by this Storage daemon
# To connect, the Director's bareos-dir.conf must have the same Name and MediaType.
#
Device {
Name = FileStorage
Media Type = File
Archive Device = /var/lib/bareos/storage
LabelMedia = yes; # lets Bareos label unlabeled media
Random Access = yes;
AutomaticMount = yes; # when device opened, read it
RemovableMedia = no;
AlwaysOpen = no;
}
#
# include additional configuration files, if required
#
# eg.
#@/etc/bareos/bareos-sd.d/device-gluster.conf
#
# Send all messages to the Director,
# mount messages also are sent to the email address
#
Messages {
Name = Standard
director = XXX_REPLACE_WITH_LOCAL_HOSTNAME_XXX-dir = all
}
|