3 # Bacula interface to mtx autoloader
7 # If you set in your Device resource
9 # Changer Command = "path-to-this-script/mtx-changer" %c %o %S %a %d
10 # you will have the following input to this script:
12 # mtx-changer "changer-device" "command" "slot" "archive-device" "drive-index"
17 # mtx-changer /dev/sg0 load 1 /dev/nst0 0 (on a Linux system)
19 # If you need to an offline, refer to the drive as $4
20 # e.g. mt -f $4 offline
22 # Many changers need an offline after the unload. Also many
23 # changers need a sleep 60 after the mtx load.
25 # N.B. If you change the script, take care to return either
26 # the mtx exit code or a 0. If the script exits with a non-zero
27 # exit code, Bacula will assume the request failed.
33 # The purpose of this function to wait a maximum
34 # time for the drive. It will
35 # return as soon as the drive is ready, or after
36 # waiting a maximum of 180 seconds.
37 # Note, this is very system dependent, so if you are
38 # not running on Linux, you will probably need to
39 # re-write it, or at least change the grep target.
43 while [ $i -le 180 ]; do # Wait max 180 seconds
44 if mt -f $1 status | grep ONLINE >/dev/null 2>&1; then
47 # echo "Device $1 - not ready, retrying..."
54 if test $# -lt 2 ; then
55 echo "usage: mtx-changer ctl-device command slot archive-device drive"
56 echo " Insufficient number of arguments arguments given."
57 echo " Mimimum usage is first two arguments ..."
66 # If drive not given, default to 0
74 # Check for special cases where only 2 arguments are needed,
75 # all others are a minimum of 3
86 if test $# -lt 3; then
87 echo "usage: mtx-changer ctl-device command slot archive-device drive"
88 echo " Insufficient number of arguments arguments given."
89 echo " Mimimum usage is first three arguments ..."
98 # echo "Doing mtx -f $ctl unload $slot $drive"
100 # enable the following line if you need to eject the cartridge
101 # mt -f $device offline
102 if test x$slot = x; then
103 ${MTX} -f $ctl unload
105 ${MTX} -f $ctl unload $slot $drive
110 # echo "Doing mtx -f $ctl load $slot $drive"
111 ${MTX} -f $ctl load $slot $drive
114 # Increase the sleep time if you have a slow device
115 # or remove the sleep and add the following:
116 # wait_for_drive $device
122 # echo "Requested list"
123 ${MTX} -f $ctl status | grep " *Storage Element [0-9]*:.*Full" | awk "{print \$3 \$4}" | sed "s/Full *\(:VolumeTag=\)*//"
124 # Comment out the previous line and add a line here
125 # to print "fake" barcodes.
127 # If you have a VXA PacketLoader and the above does not work, try
128 # turning it off and enabling the following line.
129 # ${MTX} -f $ctl status | grep " *Storage Element [0-9]*:.*Full" | sed "s/*Storage Element //" | sed "s/Full :VolumeTag=//"
133 ${MTX} -f $ctl status >/tmp/mtx.$$
135 cat /tmp/mtx.$$ | grep "^Data Transfer Element $drive:Full" | awk "{print \$7}"
136 cat /tmp/mtx.$$ | grep "^Data Transfer Element $drive:Empty" | awk "{print 0}"
142 # echo "Request slots"
143 ${MTX} -f $ctl status | grep " *Storage Changer" | awk "{print \$5}"