X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=virt-what.in;h=077007045e959ab69423feadee1df2bb3b30aaf2;hb=915d2147645023abf571fd7422f70b5d95cd23dd;hp=6e9aef11c2df77790b1007115a8f754c2e371c83;hpb=468ae304e6a02bd433c3f282fab9ab0a2f468269;p=virt-what.git diff --git a/virt-what.in b/virt-what.in index 6e9aef1..0770070 100644 --- a/virt-what.in +++ b/virt-what.in @@ -33,16 +33,16 @@ skip_qemu_kvm=false VERSION="@VERSION@" -have_cpuinfo() { +have_cpuinfo () { test -e "${root}/proc/cpuinfo" } -fail() { +fail () { echo "virt-what: $1" >&2 exit 1 } -usage() { +usage () { echo "virt-what [options]" echo "Options:" echo " --help Display this help" @@ -51,24 +51,21 @@ usage() { } # Handle the command line arguments, if any. - -TEMP=$(getopt -o v --long help --long version --long test-root: -n 'virt-what' -- "$@") -if [ $? != 0 ]; then exit 1; fi -eval set -- "$TEMP" - -while true; do +while test $# -gt 0; do case "$1" in --help) usage ;; - --test-root) + --test-root=*) # Deliberately undocumented: used for 'make check'. - root="$2" - shift 2 + root=$(echo "$1" | sed 's/.*=//') + shift 1 + test -z "$root" && fail "--test-root option requires a value" ;; -v|--version) echo "$VERSION"; exit 0 ;; --) shift; break ;; - *) fail "internal error ($1)" ;; + *) fail "unrecognized option '$1'";; esac done +test $# -gt 0 && fail "extra operand '$1'" # Add /sbin and /usr/sbin to the path so we can find system # binaries like dmidecode.