From 11e41c0eef91d9b8fdbd8fb25795be915b29414f Mon Sep 17 00:00:00 2001 From: jkh Date: Wed, 18 Jun 1997 01:55:19 +0000 Subject: Check named_enable rather than just named_flags. PR: 3893 (sort of) --- usr.sbin/ndc/ndcedit.awk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/ndc') diff --git a/usr.sbin/ndc/ndcedit.awk b/usr.sbin/ndc/ndcedit.awk index bbb9218..8074819 100644 --- a/usr.sbin/ndc/ndcedit.awk +++ b/usr.sbin/ndc/ndcedit.awk @@ -1,4 +1,4 @@ -# $Id: ndcedit.awk,v 1.4 1997/02/22 16:08:19 peter Exp $ +# $Id: ndcedit.awk,v 1.5 1997/05/27 07:19:57 jkh Exp $ NR == 3 { print "#" print "# This file is generated automatically, do not edit it here!" @@ -13,8 +13,8 @@ NR == 3 { } { if ($1 == "named") { - printf "\t\t# $namedflags is imported from /etc/rc.conf\n" - printf "\t\tif [ \"X${named_flags}\" != X\"NO\" ]; then\n" + printf "\t\t# $named_flags is imported from /etc/rc.conf\n" + printf "\t\tif [ \"X${named_enable}\" = X\"YES\" ]; then\n" printf "\t\t\tnamed ${named_flags} && {\n" getline printf "\t%s\n", $0 -- cgit v1.1