aboutsummaryrefslogtreecommitdiff
path: root/scripts/scsi_stop
diff options
context:
space:
mode:
authorDouglas Gilbert <dgilbert@interlog.com>2009-08-27 17:25:38 +0000
committerDouglas Gilbert <dgilbert@interlog.com>2009-08-27 17:25:38 +0000
commit2e8cfd4876cad107f930a8940c5f65c6b64507ca (patch)
treee714da171fe51011ff9e6ddc98efffc64efc48df /scripts/scsi_stop
parentc6737e9da997d3dac104a489a8c79459ba43e099 (diff)
downloadsg3_utils-2e8cfd4876cad107f930a8940c5f65c6b64507ca.tar.gz
preliminary spc4r21 sync, manpages for extended scsi_start and scsi_stop
git-svn-id: https://svn.bingwo.ca/repos/sg3_utils/trunk@291 6180dd3e-e324-4e3e-922d-17de1ae2f315
Diffstat (limited to 'scripts/scsi_stop')
-rwxr-xr-xscripts/scsi_stop17
1 files changed, 11 insertions, 6 deletions
diff --git a/scripts/scsi_stop b/scripts/scsi_stop
index c719ab30..a106c206 100755
--- a/scripts/scsi_stop
+++ b/scripts/scsi_stop
@@ -5,22 +5,26 @@
# Spin down the given SCS disk(s).
#
# SCSI disks (or disks that understand SCSI commands)
-# are assumed. The immediate bit is set so the command
-# should return immediately. The disk however will take
-# 10 seconds or more to spin down.
+# are assumed. By default, the immediate bit is set so the
+# command should return immediately. The disk however will
+# take 10 seconds or more to spin down. The '-w' option
+# causes each stop to wait until the disk reports that it
+# has stopped.
#
# This script assumes the sg3_utils package is installed.
#
###############################################
verbose=""
+immediate="-i"
usage()
{
- echo "Usage: scsi_stop [-h] [-v] <device>+"
+ echo "Usage: scsi_stop [-h] [-v] [-w] <device>+"
echo " where:"
echo " -h, --help print usage message"
echo " -v, --verbose more verbose output"
+ echo " -w, --wait wait for each stop to complete"
echo ""
echo "Send SCSI START STOP UNIT command to stop each <device>"
}
@@ -37,6 +41,7 @@ while test ! -z "$opt" -a -z "${opt##-*}"; do
case "$opt" in
h|-help) usage ; exit 0 ;;
v|-verbose) verbose="-v" ;;
+ w|-wait) immediate="" ;;
*) echo "Unknown option: -$opt " ; exit 1 ;;
esac
shift
@@ -45,6 +50,6 @@ done
for i
do
- echo "sg_start -i 0 $verbose $i"
- sg_start -i 0 $verbose $i
+ echo "sg_start $immediate 0 $verbose $i"
+ sg_start $immediate 0 $verbose $i
done