svn commit: r298946 - head/usr.sbin/bsdinstall/scripts

Allan Jude allanjude at freebsd.org
Mon May 23 04:49:24 UTC 2016


On 2016-05-02 17:40, Andriy Voskoboinyk wrote:
> Author: avos
> Date: Mon May  2 21:40:34 2016
> New Revision: 298946
> URL: https://svnweb.freebsd.org/changeset/base/298946
> 
> Log:
>   bsdinstall: fix static address assignment for protected wireless networks.
>   
>   Filter out IFCONFIG_PREFIX variable (which may contain WPA keyword)
>   from ifconfig parameters.
>   
>   PR:		169199
> 
> Modified:
>   head/usr.sbin/bsdinstall/scripts/netconfig_ipv4
> 
> Modified: head/usr.sbin/bsdinstall/scripts/netconfig_ipv4
> ==============================================================================
> --- head/usr.sbin/bsdinstall/scripts/netconfig_ipv4	Mon May  2 21:23:05 2016	(r298945)
> +++ head/usr.sbin/bsdinstall/scripts/netconfig_ipv4	Mon May  2 21:40:34 2016	(r298946)
> @@ -84,7 +84,7 @@ retval=$?
>  
>  if [ "$BSDINSTALL_CONFIGCURRENT" ]; then
>  	. $BSDINSTALL_TMPETC/._rc.conf.net
> -	ifconfig $INTERFACE `eval echo \\\$ifconfig_$INTERFACE`
> +	ifconfig $INTERFACE `eval echo \\\$ifconfig_$INTERFACE | sed "s|$2||"`
>  	if [ "$defaultrouter" ]; then
>  		route delete -inet default
>  		route add -inet default $defaultrouter
> 

This breaks static assignment of IP addresses to wired interfaces:

sed: first RE may not be empty


-- 
Allan Jude


More information about the svn-src-head mailing list