summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1999-02-12 00:17:35 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1999-02-12 00:17:35 +0000
commit28d461d3927c0c3ec1e488bbb1bf99d7d58c5dc1 (patch)
tree263b92fff48bf51f3e40ab7283e29b2e660dedba
parent5a3b0b2a2faa15e1bba559440d44df18c6ab5ead (diff)
Notes
-rw-r--r--usr.sbin/ndc/ndcedit.awk6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/ndc/ndcedit.awk b/usr.sbin/ndc/ndcedit.awk
index 241416b7464d..eb375b0cfc7f 100644
--- a/usr.sbin/ndc/ndcedit.awk
+++ b/usr.sbin/ndc/ndcedit.awk
@@ -1,4 +1,4 @@
-# $Id: ndcedit.awk,v 1.7 1998/05/03 05:14:04 peter Exp $
+# $Id: ndcedit.awk,v 1.8 1998/07/31 08:47:16 phk Exp $
NR == 3 {
print "#"
print "# This file is generated automatically, do not edit it here!"
@@ -7,7 +7,9 @@ NR == 3 {
print ""
print "# If there is a global system configuration file, suck it in."
- print "if [ -f /etc/rc.conf ]; then"
+ print "if [ -f /etc/defaults/rc.conf ]; then"
+ print "\t. /etc/defaults/rc.conf"
+ print "elif [ -f /etc/rc.conf ]; then"
print "\t. /etc/rc.conf"
print "fi\n"
}