Subject: misc/3620: /src/etc/netstart misses "" arround $configured_lo0
To: None <gnats-bugs@gnats.netbsd.org>
From: None <frueauf@ira.uka.de>
List: netbsd-bugs
Date: 05/14/1997 17:49:33
>Number: 3620
>Category: misc
>Synopsis: /src/etc/netstart misses "" arround $configured_lo0
>Confidential: no
>Severity: serious
>Priority: high
>Responsible: misc-bug-people (Misc Bug People)
>State: open
>Class: sw-bug
>Submitter-Id: net
>Arrival-Date: Wed May 14 09:05:04 1997
>Last-Modified:
>Originator: Thorsten Frueauf
>Organization:
private
>Release: <NetBSD-current source date> NetBSD current 13.05.1997
>Environment:
System: NetBSD di_frueauf 1.2D NetBSD 1.2D (CYBERDYNE) #0: Tue May 6 20:43:22 CEST 1997 milano@di_frueauf:/usr/src/sys/arch/amiga/compile/CYBERDYNE amiga
>Description:
/src/etc/netstart misses "" arround $configured_lo0
>How-To-Repeat:
Try to boot a current system with /etc/netstart and watch it complaining.
>Fix:
The folling patch fixed the problem for me:
*** /src/etc/netstart Wed May 14 10:38:46 1997
--- netstart Wed May 14 17:31:33 1997
***************
*** 78,84 ****
fi
# Set the address for the loopback interface if it's not configured
! if [ $configured_lo0 != "yes" ]; then
ifconfig lo0 inet localhost
fi
--- 78,84 ----
fi
# Set the address for the loopback interface if it's not configured
! if [ "$configured_lo0" != "yes" ]; then
ifconfig lo0 inet localhost
fi
>Audit-Trail:
>Unformatted:
/src/etc/netstart misses "" arround $configured_lo0