Fix for myplc-native:
[myplc.git] / plc.d / dns
index 8c8f87c..b819e32 100755 (executable)
--- a/plc.d/dns
+++ b/plc.d/dns
@@ -8,7 +8,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: dns,v 1.2 2006/05/26 19:57:30 mlhuang Exp $
+# $Id$
 #
 
 # Source function library and configuration
@@ -20,9 +20,7 @@ set -x
 
 case "$1" in
     start)
-       if [ "$PLC_DNS_ENABLED" != "1" ] ; then
-           exit 0
-       fi
+       [ $PLC_DNS_ENABLED -ne 1 ] && exit 0
 
        MESSAGE=$"Starting DNS server"
        dialog "$MESSAGE"
@@ -37,6 +35,7 @@ case "$1" in
        ;;
 
     stop)
+       [ $PLC_DNS_ENABLED -ne 1 ] && exit 0
        MESSAGE=$"Stopping DNS server"
        dialog "$MESSAGE"