Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 May 2017 16:05:11 +0000 (UTC)
From:      Alan Somers <asomers@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: r319220 - stable/10/etc/rc.d
Message-ID:  <201705301605.v4UG5B1Z006149@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: asomers
Date: Tue May 30 16:05:11 2017
New Revision: 319220
URL: https://svnweb.freebsd.org/changeset/base/319220

Log:
  MFC r301207:
  
  Fix exit status of "service routing start <af> <iface>"
  
  etc/rc.d/routing
  	Ignore the exit status of options_{inet,inet6,atm}. It's
  	meaningless.
  
  Reviewed by:	hrs
  Sponsored by:	Spectra Logic Corp
  Differential Revision:	https://reviews.freebsd.org/D6687

Modified:
  stable/10/etc/rc.d/routing
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/etc/rc.d/routing
==============================================================================
--- stable/10/etc/rc.d/routing	Tue May 30 15:51:48 2017	(r319219)
+++ stable/10/etc/rc.d/routing	Tue May 30 16:05:11 2017	(r319220)
@@ -89,18 +89,23 @@ routing_stop()
 
 setroutes()
 {
+	local _ret
+	_ret=0
 	case $1 in
 	static)
 		static_$2 add $3
+		_ret=$?
 		;;
 	options)
 		options_$2
 		;;
 	doall)
 		static_$2 add $3
+		_ret=$?
 		options_$2
 		;;
 	esac
+	return $_ret
 }
 
 routing_stop_inet()



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