]> git.sur5r.net Git - bacula/bacula/blob - bacula/scripts/mtx-changer.in
Update mtx-changer script to make it backward compatible
[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 #  mtx-changer "changer-device" "command" "slot" "archive-device" "drive-index"
13 #                  $1              $2       $3        $4               $5
14 #
15 #  for example:
16 #
17 #  mtx-changer /dev/sg0 load 1 /dev/nst0 0 (on a Linux system)
18 #
19 #  If you need to an offline, refer to the drive as $4
20 #    e.g.   mt -f $4 offline
21 #
22 #  Many changers need an offline after the unload. Also many
23 #   changers need a sleep 60 after the mtx load.
24 #
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.
28 #
29
30 MTX=@MTX@
31
32 if test $# -lt 2 ; then
33   echo "usage: mtx-changer ctl-device command slot archive-device drive"
34   echo "  Insufficient number of arguments arguments given."
35   echo "  Mimimum usage is first two arguments ..."
36   exit 1
37 fi
38
39 # Setup arguments
40 ctl=$1
41 cmd="$2"
42 slot=$3
43 device=$4
44 # If drive not given, default to 0
45 if test $# = 5 ; then
46   drive=$5
47 else
48   drive=0
49 fi
50
51 #
52 # Check for special cases where only 2 arguments are needed, 
53 #  all others are a minimum of 3
54 case $cmd in
55    loaded)
56      ;;
57    unload)
58      ;;
59    list)
60      ;;
61    slots)
62      ;;
63    *)
64      if test $# -lt 3; then
65         echo "usage: mtx-changer ctl-device command slot archive-device drive"
66         echo "  Insufficient number of arguments arguments given."
67         echo "  Mimimum usage is first three arguments ..."
68         exit 1
69      fi
70      ;;
71 esac
72
73
74 case $cmd in 
75    unload)
76 #     echo "Doing mtx -f $ctl unload $slot $drive"
77 #
78 # enable the following line if you need to eject the cartridge
79 #     mt -f $device offline
80       if test x$slot = x; then
81          ${MTX} -f $ctl unload
82       else
83          ${MTX} -f $ctl unload $slot $drive
84       fi
85       ;;
86
87    load)
88 #     echo "Doing mtx -f $ctl load $slot $drive"
89       ${MTX} -f $ctl load $slot $drive
90       rtn=$?
91 #
92 # Increase the sleep time if you have a slow device
93       sleep 15
94       exit $rtn
95       ;;
96
97    list) 
98 #     echo "Requested list"
99       ${MTX} -f $ctl status | grep " *Storage Element [0-9]*:.*Full" | awk "{print \$slot \$device}" | sed "s/Full *\(:VolumeTag=\)*//"
100       ;;
101
102    loaded)
103       ${MTX} -f $ctl status >/tmp/mtx.$$
104       rtn=$?
105       cat /tmp/mtx.$$ | grep "^Data Transfer Element $drive:Full" | awk "{print \$7}"
106       cat /tmp/mtx.$$ | grep "^Data Transfer Element $drive:Empty" | awk "{print 0}"
107       rm -f /tmp/mtx.$$
108       exit $rtn
109       ;;
110
111    slots)
112 #     echo "Request slots"
113       ${MTX} -f $ctl status | grep " *Storage Changer" | awk "{print \$drive}"
114       ;;
115 esac