#!/sbin/sh
#
########
#  Product: VIDEOOUT
#  Fileset: VIDEOOUT
#  VIDEOOUT checkinstall
#  @(#) $Revision: 1.3 $
########
# checkinstall looks for diskless installation
# and disallows installation if it is attempted
# 
########
#
# (c) Copyright Hewlett-Packard Company, 1997
#
########
#
## set -x ## Never ship uncommented
	# Get the utilities I'll need

if [ $SW_ROOT_DIRECTORY != / ]
	then
          echo "NOTE     VideoOut product is not supported on diskless clients"
	  echo "         and the product will not be installed.               "
	  exit 1
fi


exit 0
