ceb08cea2c
Note, these directories are missing Makefiles.. I know that.. and I'm working on it.
11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
# $NetBSD: script1,v 1.1 2001/01/05 02:06:59 garbled Exp $
|
|
. /etc/rc.conf
|
|
CONF=`eval echo \\$${1}`
|
|
echo $CONF
|
|
if [ "$CONF" = "YES" ]; then
|
|
echo "NO"
|
|
else
|
|
echo "YES"
|
|
fi
|