#!/bin/sh
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/etc:/usr/etc export PATH
if [ -f $PKGSAV/usr.etc.automount.$PKGINST ]; then
	cp $PKGSAV/usr.etc.automount.$PKGINST $BASEDIR/usr/etc/automount
	rm -f $PKGSAV/usr.etc.automount.$PKGINST
	chown root $BASEDIR/usr/etc/automount
	chgrp staff $BASEDIR/usr/etc/automount
	chmod 755 $BASEDIR/usr/etc/automount
fi
exit 0
