svn commit: r217183 - user/nwhitehorn/bsdinstall/scripts
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Sun Jan 9 06:12:33 UTC 2011
Author: nwhitehorn
Date: Sun Jan 9 06:12:33 2011
New Revision: 217183
URL: http://svn.freebsd.org/changeset/base/217183
Log:
Nothing between distextract and config need succeed, so allow the user
to cancel these with impunity.
Suggested by: brucec
Modified:
user/nwhitehorn/bsdinstall/scripts/auto
Modified: user/nwhitehorn/bsdinstall/scripts/auto
==============================================================================
--- user/nwhitehorn/bsdinstall/scripts/auto Sun Jan 9 06:05:48 2011 (r217182)
+++ user/nwhitehorn/bsdinstall/scripts/auto Sun Jan 9 06:12:33 2011 (r217183)
@@ -44,13 +44,13 @@ if [ ! -z $FETCH_DISTRIBUTIONS ]; then
fi
bsdinstall distextract || error
-bsdinstall rootpass || error
+bsdinstall rootpass
if [ "$NETCONFIG_DONE" != yes ]; then
bsdinstall netconfig # Don't check for errors -- the user may cancel
fi
-bsdinstall time || error
-bsdinstall services || error
-bsdinstall adduser || error
+bsdinstall time
+bsdinstall services
+bsdinstall adduser
bsdinstall config || error
cdialog --backtitle "FreeBSD Installer" --title "Complete" --msgbox "Installation of FreeBSD complete!" 0 0
More information about the svn-src-user
mailing list