Previous sync with `etc/netstart' was not complete.

This commit is contained in:
pk 1997-11-12 01:13:54 +00:00
parent 6be07a674c
commit b7f5e603b4

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $NetBSD: install.sub,v 1.23 1997/11/10 21:13:01 pk Exp $
# $NetBSD: install.sub,v 1.24 1997/11/12 01:13:54 pk Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@ -490,7 +490,7 @@ if [ -f /mnt/etc/rc.conf ]; then
. /mnt/etc/rc.conf
if [ "$net_interfaces" != NO ]; then
if [ "$auto_ifconfig" = YES -a "$net_interfaces" != NO ]; then
if [ "$auto_ifconfig" = YES ]; then
tmp="`ifconfig -l`"
else
tmp="$net_interfaces"
@ -506,7 +506,7 @@ if [ -f /mnt/etc/rc.conf ]; then
(while read args; do
ifconfig $i $args
done) < /mnt/etc/ifconfig.$i
elif [ "$net_interfaces" != DEFAULT ]; then
elif [ "$auto_ifconfig" != YES ]; then
echo
echo -n "/mnt/etc/ifconfig.$i missing"
echo -n "& ifconfig_$i not set"