/usr/bin/scsi_ready is in sg3-utils 1.42-2ubuntu1.
This file is owned by root:root, with mode 0o755.
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 54 55 56 | #!/bin/bash
################################################
#
# Send a TEST UNIT READY SCSI command to each given device.
#
# This script assumes the sg3_utils package is installed and uses
# the sg_turs utility..
#
###############################################
verbose=""
brief=""
usage()
{
echo "Usage: scsi_ready [-b] [-h] [-v] <device>+"
echo " where:"
echo " -b, --brief print 'ready' or 'device not ready' only"
echo " -h, --help print usage message"
echo " -v, --verbose more verbose output"
echo ""
echo "Send SCSI TEST UNIT READY to each <device>"
}
opt="$1"
while test ! -z "$opt" -a -z "${opt##-*}"; do
opt=${opt#-}
case "$opt" in
b|-brief) brief="1" ;;
h|-help) usage ; exit 0 ;;
v|-verbose) verbose="-v" ;;
vv) verbose="-vv" ;;
vvv) verbose="-vvv" ;;
*) echo "Unknown option: -$opt " ; exit 1 ;;
esac
shift
opt="$1"
done
if [ $# -lt 1 ]
then
usage
exit 1
fi
for i
do
if [ ! $brief ] ; then
echo "sg_turs $verbose $i"
fi
echo -n " "
if sg_turs $verbose $i ; then
echo "ready"
fi
done
|