#!/bin/sh
#
# This script is used to determine if we are installing on a CS6400.
#
# This is not a fool-proof test but it should always work.  This
# directory should only exist on a CS6400.
#
if [ -d /platform/CYRS,Superserver-6400/kernel/drv ]; then
	exit 0
else
	exit 1
fi
