Deleted Added
full compact
3a4
> # Copyright (c) 2013 Devin Teske
27c28,30
< # $FreeBSD: stable/10/usr.sbin/bsdinstall/scripts/wlanconfig 245980 2013-01-27 14:49:54Z nwhitehorn $
---
> # $FreeBSD: stable/10/usr.sbin/bsdinstall/scripts/wlanconfig 258421 2013-11-21 03:40:52Z dteske $
> #
> ############################################################ INCLUDES
28a32,36
> BSDCFG_SHARE="/usr/share/bsdconfig"
> . $BSDCFG_SHARE/common.subr || exit 1
>
> ############################################################ MAIN
>
53c61,62
< wpa_cli scan >>$BSDINSTALL_LOG
---
> output=$( wpa_cli scan 2>&1 )
> f_dprintf "%s" "$output"
135c144,147
< test ! -z $BSDINSTALL_CONFIGCURRENT && wpa_cli reconfigure >>$BSDINSTALL_LOG
---
> if [ "$BSDINSTALL_CONFIGCURRENT" ]; then
> output=$( wpa_cli reconfigure 2>&1 )
> f_dprintf "%s" "$output"
> fi
137a150,153
>
> ################################################################################
> # END
> ################################################################################