diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-05-24 22:38:42 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-05-24 22:38:42 +0000 |
commit | ececd6317a8fa166bd32179cad956eff77f4fb83 (patch) | |
tree | d8be3331525bb6460647c70b9d17848c6bd753fb /distrib/miniroot/install.sub | |
parent | d8a8d4ae79eb9882bf7472d03868638b20fc52b3 (diff) |
Checking for the address '0.0.0.0' no longer works as test for
dhclient failure. Just check if any inet address was assigned.
Diffstat (limited to 'distrib/miniroot/install.sub')
-rw-r--r-- | distrib/miniroot/install.sub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index f0cf717cc04..80434fa2db2 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.385 2005/04/30 14:09:41 krw Exp $ +# $OpenBSD: install.sub,v 1.386 2005/05/24 22:38:41 krw Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2005 Todd Miller, Theo de Raadt, Ken Westerback @@ -593,7 +593,7 @@ v6_info() { } # Construct etc/dhclient.conf and issue DHCP request. Return FALSE if -# no IP address or 0.0.0.0 assigned to $1. +# no IP address assigned to $1. # # $1 == interface # $2 == hostname (optional). @@ -621,7 +621,7 @@ __EOT set -- $(v4_info $_ifs) - if [[ $1 == UP && $2 != "0.0.0.0" ]]; then + if [[ $1 == UP && -n $2 ]]; then # Move configuration files to where they will be copied to the # installed system. Overwrites configuration information from # last successful dhcp attempt. |