From owner-svn-src-stable-7@FreeBSD.ORG Mon Mar 1 18:58:19 2010 Return-Path: Delivered-To: svn-src-stable-7@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5473C106564A; Mon, 1 Mar 2010 18:58:19 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 441528FC1D; Mon, 1 Mar 2010 18:58:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o21IwJ3h088144; Mon, 1 Mar 2010 18:58:19 GMT (envelope-from emax@svn.freebsd.org) Received: (from emax@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o21IwJrJ088142; Mon, 1 Mar 2010 18:58:19 GMT (envelope-from emax@svn.freebsd.org) Message-Id: <201003011858.o21IwJrJ088142@svn.freebsd.org> From: Maksim Yevmenkin Date: Mon, 1 Mar 2010 18:58:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r204526 - stable/7/etc/rc.d X-BeenThere: svn-src-stable-7@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 7-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Mar 2010 18:58:19 -0000 Author: emax Date: Mon Mar 1 18:58:18 2010 New Revision: 204526 URL: http://svn.freebsd.org/changeset/base/204526 Log: Use start/stop instead of quietstart/quietstop. Pointy hat goes to me. Pointed out by: jhb Modified: stable/7/etc/rc.d/ipfw Modified: stable/7/etc/rc.d/ipfw ============================================================================== --- stable/7/etc/rc.d/ipfw Mon Mar 1 17:42:06 2010 (r204525) +++ stable/7/etc/rc.d/ipfw Mon Mar 1 18:58:18 2010 (r204526) @@ -66,7 +66,7 @@ ipfw_poststart() # for _coscript in ${firewall_coscripts} ; do if [ -f "${_coscript}" ]; then - ${_coscript} quietstart + ${_coscript} start fi done @@ -87,7 +87,7 @@ ipfw_stop() # for _coscript in `reverse_list ${firewall_coscripts}` ; do if [ -f "${_coscript}" ]; then - ${_coscript} quietstop + ${_coscript} stop fi done }