Date: Sun, 9 Jan 2011 06:12:33 +0000 (UTC) From: Nathan Whitehorn <nwhitehorn@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r217183 - user/nwhitehorn/bsdinstall/scripts Message-ID: <201101090612.p096CXCM031673@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101090612.p096CXCM031673>