View | Details | Raw Unified | Return to bug 214390
Collapse All | Expand All

(-)b/scripts/auto (-1 / +18 lines)
Lines 185-190 if [ -n "$FETCH_DISTRIBUTIONS" -a -n "$BSDINSTALL_CONFIGCURRENT" ]; then Link Here
185
	dialog --backtitle "$OSNAME Installer" --title "Network Installation" --msgbox "Some installation files were not found on the boot volume. The next few screens will allow you to configure networking so that they can be downloaded from the Internet." 0 0
185
	dialog --backtitle "$OSNAME Installer" --title "Network Installation" --msgbox "Some installation files were not found on the boot volume. The next few screens will allow you to configure networking so that they can be downloaded from the Internet." 0 0
186
	bsdinstall netconfig || error
186
	bsdinstall netconfig || error
187
	NETCONFIG_DONE=yes
187
	NETCONFIG_DONE=yes
188
189
	f_getvar "httpProxy" "value"
190
	[ -n "$value" ] || value="$HTTP_PROXY"
191
	[ -n "$value" ] || value="$http_proxy"
192
	unset HTTP_PROXY http_proxy
193
	exec 3>&1
194
	value=$(bsddialog --backtitle "$OSNAME Installer" --title 'Network Configuration' --no-cancel --inputbox "HTTP Proxy:" 0 0 "$value" 2>&1 1>&3)
195
	exec 3>&-
196
	export HTTP_PROXY="$value"
197
198
	f_getvar "ftpProxy" "value"
199
	[ -n "$value" ] || value="$FTP_PROXY"
200
	[ -n "$value" ] || value="$ftp_proxy"
201
	unset FTP_PROXY ftp_proxy
202
	exec 3>&1
203
	value=$(bsddialog --backtitle "$OSNAME Installer" --title 'Network Configuration' --no-cancel --inputbox "FTP Proxy:" 0 0 "$value" 2>&1 1>&3)
204
	exec 3>&-
205
	export FTP_PROXY="$value"
188
fi
206
fi
189
207
190
rm -f $PATH_FSTAB
208
rm -f $PATH_FSTAB
191
- 

Return to bug 214390