#!/bin/sh
#
# Return with exit status 0 iff system is running SunOs.

if test -f /bin/uname; then
    SYSTEM=`/bin/uname`
    if test "$SYSTEM" = "SunOS"; then
	exit 0
        fi
    fi
exit 1
