From owner-svn-src-all@freebsd.org Fri Mar 22 12:58:52 2019 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFA3F1545617; Fri, 22 Mar 2019 12:58:52 +0000 (UTC) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: from gndrsh.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5981081F57; Fri, 22 Mar 2019 12:58:52 +0000 (UTC) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: from gndrsh.dnsmgr.net (localhost [127.0.0.1]) by gndrsh.dnsmgr.net (8.13.3/8.13.3) with ESMTP id x2MCwoGS065411; Fri, 22 Mar 2019 05:58:50 -0700 (PDT) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.13.3/8.13.3/Submit) id x2MCwoqK065410; Fri, 22 Mar 2019 05:58:50 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201903221258.x2MCwoqK065410@gndrsh.dnsmgr.net> Subject: Re: svn commit: r345412 - head/libexec/rc/rc.d In-Reply-To: <201903221146.x2MBkaRJ070320@repo.freebsd.org> To: Cy Schubert Date: Fri, 22 Mar 2019 05:58:50 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 5981081F57 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2019 12:58:53 -0000 > 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 Thank you. > 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} > } -- Rod Grimes rgrimes@freebsd.org