#!/bin/sh
uname "$@"
RET=$?

if [ $? != 0 ] ; then
   exit $RET
fi

RESULT=`uname "$@"`

if [ "x$RESULT" = "xunknown" ] ; then
   exit 1
fi

exit 0
