diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-08 20:45:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-08 20:45:34 +0000 |
commit | 1d31fc657db98b1b788825732b5ba84d66b905f3 (patch) | |
tree | 8980d5b2ec8120fe53f4a7ac2f6b9bebd1d735d7 /etc | |
parent | d363600bd112d031bc1c327c5e02ea9129032cf9 (diff) |
start named earlier; this is an experiment
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.53 1997/11/04 09:15:31 deraadt Exp $ +# $OpenBSD: rc,v 1.54 1997/11/08 20:45:33 deraadt Exp $ # System startup script run by init on autoboot # or after single-user. @@ -76,6 +76,12 @@ echo 'starting network' mount /usr >/dev/null 2>&1 mount /var >/dev/null 2>&1 +# $named_flags is imported from /etc/rc.conf; +# if $named_flags != NO, named is run. +if [ "X${named_flags}" != X"NO" ]; then + echo -n ' named'; named $named_flags +fi + # /etc/ifaliases, if it exists, contains the names of additional IP # addresses for each interface. It is formatted as a series of lines # that contain @@ -302,13 +308,6 @@ if [ "X${mrouted_flags}" != X"NO" ]; then echo -n ' mrouted'; mrouted $mrouted_flags fi -# $named_flags is imported from /etc/rc.conf; -# if $named_flags != NO, named is run. -if [ "X${named_flags}" != X"NO" ]; then - echo -n ' named'; named $named_flags -fi -mount -a -t nfs # do again, in case DNS hostnames are used.. - # $rwhod is imported from /etc/rc.conf; # if $rwhod == YES, rwhod is run. if [ X${rwhod} = X"YES" ]; then |