]> git.sur5r.net Git - bacula/bacula/blob - bacula/scripts/mtx-changer.in
Add drive name to reserved Volume list printout in SD.
[bacula/bacula] / bacula / scripts / mtx-changer.in
1 #!/bin/sh
2 #
3 # Bacula interface to mtx autoloader
4 #
5 #  $Id$
6 #
7 #  If you set in your Device resource
8 #
9 #  Changer Command = "path-to-this-script/mtx-changer" %c %o %S %a %d
10 #    you will have the following input to this script:
11 #
12 #  So Bacula will always call with all the following arguments, even though
13 #    in come cases, not all are used.
14
15 #  mtx-changer "changer-device" "command" "slot" "archive-device" "drive-index"
16 #                  $1              $2       $3        $4               $5
17 #
18 #  for example:
19 #
20 #  mtx-changer /dev/sg0 load 1 /dev/nst0 0 (on a Linux system)
21
22 #  will request to load the first cartidge into drive 0, where
23 #   the SCSI control channel is /dev/sg0, and the read/write device
24 #   is /dev/nst0.
25 #
26 #  If you need to an offline, refer to the drive as $4
27 #    e.g.   mt -f $4 offline
28 #
29 #  Many changers need an offline after the unload. Also many
30 #   changers need a sleep 60 after the mtx load.
31 #
32 #  N.B. If you change the script, take care to return either 
33 #   the mtx exit code or a 0. If the script exits with a non-zero
34 #   exit code, Bacula will assume the request failed.
35 #
36
37 MTX=@MTX@
38 # Set this to a directory that only the SD can read/write
39 TMPDIR=@working_dir@
40
41 #
42 # The purpose of this function to wait a maximum 
43 #   time for the drive. It will
44 #   return as soon as the drive is ready, or after
45 #   waiting a maximum of 300 seconds.
46 # Note, this is very system dependent, so if you are
47 #   not running on Linux, you will probably need to
48 #   re-write it, or at least change the grep target.
49 #
50 wait_for_drive() {
51   i=0 
52   while [ $i -le 300 ]; do  # Wait max 300 seconds
53     if mt -f $1 status | grep ONLINE  >/dev/null 2>&1; then
54       break
55     fi
56 #   echo "Device $1 - not ready, retrying..."
57     sleep 1
58     i=`expr $i + 1`
59   done
60 }
61
62
63 if test $# -lt 2 ; then
64   echo "usage: mtx-changer ctl-device command slot archive-device drive"
65   echo "  Insufficient number of arguments arguments given."
66   echo "  Mimimum usage is first two arguments ..."
67   exit 1
68 fi
69
70 # Setup arguments
71 ctl=$1
72 cmd="$2"
73 slot=$3
74 device=$4
75 drive=$5
76
77 #
78 # Check for special cases where only 2 arguments are needed, 
79 #  all others are a minimum of 3
80 case $cmd in
81    list)
82      ;;
83    slots)
84      ;;
85    *)
86      if test $# -lt 5; then
87         echo "usage: mtx-changer ctl-device command slot archive-device drive"
88         echo "  Insufficient number of arguments arguments given."
89         exit 1
90      fi
91      ;;
92 esac
93
94
95 case $cmd in 
96    unload)
97 #     echo "Doing mtx -f $ctl unload $slot $drive"
98 #
99 # enable the following line if you need to eject the cartridge
100 #     mt -f $device offline
101       ${MTX} -f $ctl unload $slot $drive
102       ;;
103
104    load)
105 #     echo "Doing mtx -f $ctl load $slot $drive"
106       ${MTX} -f $ctl load $slot $drive
107       rtn=$?
108 #
109 # Increase the sleep time if you have a slow device
110 # or remove the sleep and add the following:
111 #     wait_for_drive $device
112       sleep 15
113       exit $rtn
114       ;;
115
116    list) 
117 #     echo "Doing mtx -f $ctl -- to list volumes"
118       ${MTX} -f $ctl status >${TMPDIR}/mtx.$$
119       rtn=$?
120       cat ${TMPDIR}/mtx.$$ | grep " *Storage Element [0-9]*:.*Full" | awk "{print \$3 \$4}" | sed "s/Full *\(:VolumeTag=\)*//"
121       cat ${TMPDIR}/mtx.$$ | grep "^Data Transfer Element [0-9]*:Full (Storage Element [0-9]" | awk '{printf "%s:%s\n",$7,$10}'
122       rm -f ${TMPDIR}/mtx.$$ 2>&1 >/dev/null
123 #
124 # If you have a VXA PacketLoader and the above does not work, try
125 #  turning it off and enabling the following line.
126 #     ${MTX} -f $ctl status | grep " *Storage Element [0-9]*:.*Full" | sed "s/*Storage Element //" | sed "s/Full :VolumeTag=//"
127       exit $rtn
128       ;;
129
130    loaded)
131 #     echo "Doing mtx -f $ctl $drive -- to find what is loaded"
132       ${MTX} -f $ctl status >${TMPDIR}/mtx.$$
133       rtn=$?
134       cat ${TMPDIR}/mtx.$$ | grep "^Data Transfer Element $drive:Full" | awk "{print \$7}"
135       cat ${TMPDIR}/mtx.$$ | grep "^Data Transfer Element $drive:Empty" | awk "{print 0}"
136       rm -f ${TMPDIR}/mtx.$$ 2>&1 >/dev/null
137       exit $rtn
138       ;;
139
140    slots)
141 #     echo "Doing mtx -f $ctl -- to get count of slots"
142       ${MTX} -f $ctl status | grep " *Storage Changer" | awk "{print \$5}"
143       ;;
144 esac