#!/bin/sh
#
# $FreeBSD$
#

if [ "$2" != "POST-INSTALL" ]; then
        exit 0
fi

kdmrcscript=%%PREFIX%%/etc/rc.d/genkdmconf.sh

if [ -f $kdmrcscript ]; then
	sh -c "$kdmrcscript"
fi

exit 0