svn commit: r345412 - head/libexec/rc/rc.d

Cy Schubert cy at FreeBSD.org
Fri Mar 22 11:46:37 UTC 2019


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}
 }
 
 


More information about the svn-src-all mailing list