Subject: rc.conf question
To: None <current-users@NetBSD.ORG>
From: Michael K. Sanders <msanders@aros.net>
List: current-users
Date: 05/05/1997 14:39:39
I'm curious how the following syntax came about:

  if [ "$option" != NO ]; then
	...

Might it not be more clear if it were:

  if [ "$option" = YES]; then
	...

This would also have the advantage that an option would default
to not starting up if for some reason rc.conf did not set it
explicitly. Comments?