NetBSD/share/sushi/system/dailyconf/script1

11 lines
183 B
Bash
Executable File

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