# Check /etc/passwd for hidden root users
if [ $CHECK_ACCOUNTS = "yes" ] ; then
cat /etc/passwd | grep ":0:" | grep -v ^root: > $TEMPFILE
ACCOUNTS=`cat $TEMPFILE | wc -l`
if [ $ACCOUNTS -ge 1 ] ; then
	echo "### WARNING: Discovered $ACCOUNTS additional accounts with root privileges!"
	cat $TEMPFILE
else
	echo "    No additional root accounts."
fi
fi