summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsdinstall
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2011-09-17 09:25:45 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2011-09-17 09:25:45 +0000
commitf873725884927a840d613c459fe0ff342bcfc1ed (patch)
tree347a6db584147e3e070681360ef52bb2fc14f196 /usr.sbin/bsdinstall
parent680b9f90a2df45c87f6be8100faa097073b497b7 (diff)
downloadFreeBSD-src-f873725884927a840d613c459fe0ff342bcfc1ed.zip
FreeBSD-src-f873725884927a840d613c459fe0ff342bcfc1ed.tar.gz
Inquire about terminal type if starting from a serial console and do
not configure the host's networking if netbooted [1]. Also fix FTP installations behind some firewalls [2]. PR: bin/159583 [2] Reported by: stas [1] Approved by: re (kib)
Diffstat (limited to 'usr.sbin/bsdinstall')
-rwxr-xr-xusr.sbin/bsdinstall/scripts/auto10
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.sbin/bsdinstall/scripts/auto b/usr.sbin/bsdinstall/scripts/auto
index 667ced4..68897dd 100755
--- a/usr.sbin/bsdinstall/scripts/auto
+++ b/usr.sbin/bsdinstall/scripts/auto
@@ -35,7 +35,7 @@ error() {
--no-label "Exit" --yes-label "Restart" --yesno \
"An installation step has been aborted. Would you like to restart the installation or exit the installer?" 0 0
if [ $? -ne 0 ]; then
- exit
+ exit 1
else
exec $0
fi
@@ -128,14 +128,12 @@ if [ ! -z "$FETCH_DISTRIBUTIONS" ]; then
if [ -d $BSDINSTALL_DISTDIR ]; then
DISTDIR_IS_UNIONFS=1
mount_nullfs -o union "$BSDINSTALL_FETCHDEST" "$BSDINSTALL_DISTDIR"
- fi
-
- # Otherwise, fetch everything
- if [ $? -ne 0 ]; then
- export DISTRIBUTIONS="$ALL_DISTRIBUTIONS"
+ else
+ export DISTRIBUTIONS="MANIFEST $ALL_DISTRIBUTIONS"
export BSDINSTALL_DISTDIR="$BSDINSTALL_FETCHDEST"
fi
+ export FTP_PASSIVE_MODE=YES
bsdinstall distfetch || error
export DISTRIBUTIONS="$ALL_DISTRIBUTIONS"
fi
OpenPOWER on IntegriCloud