Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Sep 2017 01:24:17 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r323571 - stable/10/usr.sbin/bsdinstall/scripts
Message-ID:  <201709140124.v8E1OHf2027017@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Thu Sep 14 01:24:17 2017
New Revision: 323571
URL: https://svnweb.freebsd.org/changeset/base/323571

Log:
  MFC r323448: bsdinstall: Ignore error return from newaliases(1)
  
  This was originally added as "exit $SUCCESS" but with nothing to set the
  SUCCESS variable. Thus it became an exit with no argument, which just
  exits with the status of the preceding command.
  
  Approved by:	re (gjb)
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/10/usr.sbin/bsdinstall/scripts/config
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/bsdinstall/scripts/config
==============================================================================
--- stable/10/usr.sbin/bsdinstall/scripts/config	Thu Sep 14 00:41:27 2017	(r323570)
+++ stable/10/usr.sbin/bsdinstall/scripts/config	Thu Sep 14 01:24:17 2017	(r323571)
@@ -45,7 +45,7 @@ cp $BSDINSTALL_TMPBOOT/* $BSDINSTALL_CHROOT/boot
 # Set up other things from installed config
 chroot $BSDINSTALL_CHROOT /usr/bin/newaliases > /dev/null 2>&1
 
-exit $SUCCESS
+exit 0
 
 ################################################################################
 # END



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709140124.v8E1OHf2027017>