wrap $configured_lo0 in quotes, so that it doesn't barf if it's not set.

noticed by Thorsten Frueauf <frueauf@ira.uka.de> in [misc/3620]
This commit is contained in:
lukem 1997-05-15 02:09:27 +00:00
parent 608a6800e6
commit 1b063db228
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $NetBSD: netstart,v 1.35 1997/05/12 23:40:50 lukem Exp $
# $NetBSD: netstart,v 1.36 1997/05/15 02:09:27 lukem Exp $
# from: @(#)netstart 8.1 (Berkeley) 7/23/93
if [ -f /etc/rc.conf ]; then
@ -78,7 +78,7 @@ if [ "$net_interfaces" != NO ]; then
fi
# Set the address for the loopback interface if it's not configured
if [ $configured_lo0 != "yes" ]; then
if [ "$configured_lo0" != "yes" ]; then
ifconfig lo0 inet localhost
fi