#! /sbin/sh
# postinstall script
# $Revision: 1.2.114.1 $
#
# (c) Copyright Hewlett-Packard Company 1993
#
########
if [ -f /usr/lbin/sw/control_utils ];	then
	. /usr/lbin/sw/control_utils
else
	echo "ERROR:    Cannot find /usr/lbin/sw/control_utils";exit 1
fi

if [[ $SW_ROOT_DIRECTORY = "/" && -z $SW_DEFERRED_KERNBLD ]];then
	mod_systemfile ${SW_SYSTEM_FILE_PATH} -a nfs
	retval=$?
	if [[ $retval -ne $SUCCESS ]];then
		echo "ERROR:  Could not enter nfs into ${SW_SYSTEM_FILE_PATH}"
		exit $retval
	fi
fi

exit 0






