svn commit: r323568 - stable/11/usr.sbin/bsdinstall/scripts

Ed Maste emaste at FreeBSD.org
Thu Sep 14 00:35:28 UTC 2017


Author: emaste
Date: Thu Sep 14 00:35:27 2017
New Revision: 323568
URL: https://svnweb.freebsd.org/changeset/base/323568

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.
  
  Sponsored by:	The FreeBSD Foundation

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

Modified: stable/11/usr.sbin/bsdinstall/scripts/config
==============================================================================
--- stable/11/usr.sbin/bsdinstall/scripts/config	Thu Sep 14 00:33:27 2017	(r323567)
+++ stable/11/usr.sbin/bsdinstall/scripts/config	Thu Sep 14 00:35:27 2017	(r323568)
@@ -48,7 +48,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


More information about the svn-src-all mailing list