Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Mar 2019 11:46:36 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r345412 - head/libexec/rc/rc.d
Message-ID:  <201903221146.x2MBkaRJ070320@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Fri Mar 22 11:46:35 2019
New Revision: 345412
URL: https://svnweb.freebsd.org/changeset/base/345412

Log:
  Use internal command variables for consistent style.
  
  Reported by:	rgrimes@
  MFC after:	13 days
  X-MFC with:	r345400

Modified:
  head/libexec/rc/rc.d/ippool

Modified: head/libexec/rc/rc.d/ippool
==============================================================================
--- head/libexec/rc/rc.d/ippool	Fri Mar 22 10:38:22 2019	(r345411)
+++ head/libexec/rc/rc.d/ippool	Fri Mar 22 11:46:35 2019	(r345412)
@@ -32,8 +32,8 @@ ippool_start()
 ippool_reload()
 {
 	echo "Reloading IP Pools."
-	${ippool_program} -F
-	ippool_start
+	${stop_cmd}
+	${start_cmd}
 }
 
 



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