NetBSD/share/sushi/system/securityconf/script1

11 lines
186 B
Bash
Executable File

#!/bin/sh
# $NetBSD: script1,v 1.1 2001/03/06 21:24:13 garbled Exp $
. /etc/security.conf
CONF=`eval echo \\$${1}`
echo $CONF
if [ "$CONF" = "YES" ]; then
echo "NO"
else
echo "YES"
fi