104 lines
2.6 KiB
Django/Jinja
104 lines
2.6 KiB
Django/Jinja
#
|
|
# Default Bacula Storage Daemon Configuration file
|
|
#
|
|
# For Bacula release 2.0.3 (06 March 2007) -- redhat (Zod)
|
|
#
|
|
# 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 = bacula-sd
|
|
SDPort = 9103 # Director's port
|
|
WorkingDirectory = "/var/spool/bacula"
|
|
Pid Directory = "/var/run"
|
|
Maximum Concurrent Jobs = 10
|
|
Heartbeat Interval = 5
|
|
}
|
|
|
|
#
|
|
# List Directors who are permitted to contact Storage daemon
|
|
#
|
|
Director {
|
|
Name = bacula-dir
|
|
Password = "{{ bacula5PasswordDir }}"
|
|
}
|
|
|
|
#
|
|
# Restricted Director, used by tray-monitor to get the
|
|
# status of the storage daemon
|
|
#
|
|
Director {
|
|
Name = bacula-mon
|
|
Password = "{{ bacula5PasswordDir }}"
|
|
Monitor = yes
|
|
}
|
|
|
|
#
|
|
# Devices supported by this Storage daemon
|
|
# To connect, the Director's bacula-dir.conf must have the
|
|
# same Name and MediaType.
|
|
#
|
|
|
|
Device {
|
|
Name = FileStorage
|
|
Media Type = File
|
|
Archive Device = /bacula/
|
|
LabelMedia = yes; # lets Bacula label unlabeled media
|
|
Random Access = Yes;
|
|
AutomaticMount = yes; # when device opened, read it
|
|
RemovableMedia = no;
|
|
AlwaysOpen = no;
|
|
}
|
|
|
|
|
|
Device {
|
|
Name = FileStorage2
|
|
Media Type = File
|
|
Archive Device = /bacula2/
|
|
LabelMedia = yes; # lets Bacula label unlabeled media
|
|
Random Access = Yes;
|
|
AutomaticMount = yes; # when device opened, read it
|
|
RemovableMedia = no;
|
|
AlwaysOpen = no;
|
|
}
|
|
|
|
#
|
|
# An autochanger device with two drives
|
|
|
|
Autochanger {
|
|
Name = Autochanger
|
|
Device = Drive-1
|
|
Changer Command = "/usr/libexec/bacula/mtx-changer %c %o %S %a %d"
|
|
Changer Device = /dev/sg1
|
|
}
|
|
|
|
Device {
|
|
Name = Drive-1 #
|
|
Drive Index = 0
|
|
Media Type = LTO-5
|
|
Archive Device = /dev/nst0
|
|
AutomaticMount = yes; # when device opened, read it
|
|
AlwaysOpen = yes;
|
|
RemovableMedia = yes;
|
|
RandomAccess = no;
|
|
AutoChanger = yes
|
|
SpoolDirectory = /bacula/bacula/spool/;
|
|
Maximum Spool Size = 1600G;
|
|
# Label Media = yes
|
|
# Enable the Alert command only if you have the mtx package loaded
|
|
Alert Command = "sh -c 'tapeinfo -f %c |grep TapeAlert|cat'"
|
|
# If you have smartctl, enable this, it has more info than tapeinfo
|
|
Alert Command = "sh -c 'smartctl -H -l error %c'"
|
|
}
|
|
#
|
|
# Send all messages to the Director,
|
|
# mount messages also are sent to the email address
|
|
#
|
|
Messages {
|
|
Name = Standard
|
|
director = bacula-dir = all
|
|
}
|