svn commit: r225612 - head/usr.sbin/bsdinstall/scripts
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Fri Sep 16 09:37:13 UTC 2011
Author: nwhitehorn
Date: Fri Sep 16 09:37:13 2011
New Revision: 225612
URL: http://svn.freebsd.org/changeset/base/225612
Log:
Fix WPA setup broken by changes to shell argument passing inside the
installer network configuration.
PR: bin/159558
Approved by: re (kib)
Modified:
head/usr.sbin/bsdinstall/scripts/netconfig_ipv4
Modified: head/usr.sbin/bsdinstall/scripts/netconfig_ipv4
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 Fri Sep 16 09:15:34 2011 (r225611)
+++ head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 Fri Sep 16 09:37:13 2011 (r225612)
@@ -35,6 +35,7 @@
INTERFACE=$1
IFCONFIG_PREFIX="$2"
+test -z "$IFCONFIG_PREFIX" || IFCONFIG_PREFIX="$2 "
case "${INTERFACE}" in
"") dialog --backtitle 'FreeBSD Installer' --title 'Network Configuration' \
--msgbox 'No interface specified for IPv4 configuration.' 0 0
More information about the svn-src-all
mailing list