#! /usr/bin/sh
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#ident	"@(#)postinstall	1.1	07/03/01 SMI"
#

# postinstall - Add sysidkbd to sysidconfig app list

if [ -x /usr/sbin/sysidkbd ]; then
	/usr/sbin/sysidconfig -b "${PKG_INSTALL_ROOT}" -l |\
		/usr/bin/grep -s sysidkbd >/dev/null

	if [ $? -ne 0 ]; then
		/usr/sbin/sysidconfig -b "${PKG_INSTALL_ROOT}" \
			-a /usr/sbin/sysidkbd
	fi
fi
exit 0
