#! /bin/sh # # $Id: nw_checkinstall.SunOS,v 1.1.2.1 2005/09/26 17:45:32 audec Exp $ Copyright (c) 2005-2005 EMC Corporation. # # # Copyright (c) 2005-2005 EMC Corporation. # # All rights reserved. This is an UNPUBLISHED work, and # comprises proprietary and confidential information of EMC. # Unauthorized use, disclosure, and distribution are strictly # prohibited. Use, duplication, or disclosure of the software # and documentation by the U.S. Government is subject to # restrictions set forth in a license agreement between the # Government and EMC or other written agreement specifying # the Government's rights to use the software and any applicable # FAR provisions, such as FAR 52.227-19. # expected="$ARCH" platform=`uname -p` if [ ${platform} != ${expected} ]; then echo "This package must be installed on a ${expected} architecture." echo "Aborting installation." exit 1 fi exit 0