/etc/bareos/bareos-sd.d/device-tape-with-autoloader.conf is in bareos-storage-tape 14.2.6-3.
This file is owned by root:root, with mode 0o640.
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 | #
# Preparations:
#
# include this configuration file in bareos-sd.conf by
# @/etc/bareos/bareos-sd.d/device-tape-with-autoloader.conf
#
# on Linux use "lsscsi --generic"
# to get a list of your SCSI devices.
# However, normaly you should access your devices by-id
# (eg. /dev/tape/by-id/scsi-350011d00018a5f03-nst),
# because the short device names like /dev/nst1
# might change on reboot.
Device {
Name = "tapedrive-0"
DeviceType = tape
# default:0, only required if the autoloader have multiple drives.
DriveIndex = 0
# if only one drive is available, this is normally /dev/nst0.
# However, it is advised to access it via id (/dev/tape/by-id/...).
ArchiveDevice = /dev/nst0
#ArchiveDevice = /dev/tape/by-id/scsi-350011d00018a5f03-nst
# arbitrary string that descripes the the storage media.
# Bareos uses this to determine, which device can be handle what media.
MediaType = lto
# enable "Check Labels" if tapes with ANSI/IBM labels
# should be preserved
#Check Labels = yes
AutoChanger = yes # default: no
AutomaticMount = yes # default: no
MaximumFileSize = 10GB # default: 1000000000 (1GB)
}
Autochanger {
Name = "autochanger-0"
# adapt this, to match your storage loader
Changer Device = /dev/tape/by-id/scsi-1TANDBERGStorageLoader_AA45JC001732
# an Autochanger can contain multiple drive devices
Device = tapedrive-0
#Device = tapedrive-1
Changer Command = "/usr/lib/bareos/scripts/mtx-changer %c %o %S %a %d"
}
|