# Check if afs is running.  If so turn off xntpd as afs does its own time sync
lsmod | grep -q libafs
if [ $? -eq 0 ] ; then
	/sbin/chkconfig --level 35 xntpd off
	echo "Turned off xntpd because afs is running" >>/etc/$WORKGROUP/after.rpms.log
fi
/sbin/chkconfig --level 345 nfs on
/sbin/chkconfig --level 345 autofs on
/sbin/chkconfig --level 345 nfslock on

