From owner-svn-src-stable-9@FreeBSD.ORG Fri Jan 18 13:16:03 2013 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1D972CCB; Fri, 18 Jan 2013 13:16:03 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0FF687B1; Fri, 18 Jan 2013 13:16:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0IDG2mt002204; Fri, 18 Jan 2013 13:16:02 GMT (envelope-from glebius@svn.freebsd.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0IDG24L002203; Fri, 18 Jan 2013 13:16:02 GMT (envelope-from glebius@svn.freebsd.org) Message-Id: <201301181316.r0IDG24L002203@svn.freebsd.org> From: Gleb Smirnoff Date: Fri, 18 Jan 2013 13:16:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r245604 - stable/9/etc/rc.d X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jan 2013 13:16:03 -0000 Author: glebius Date: Fri Jan 18 13:16:02 2013 New Revision: 245604 URL: http://svnweb.freebsd.org/changeset/base/245604 Log: Belatedly merge etc part of r229850. pfsync.ko is working. Noticed by: des Modified: stable/9/etc/rc.d/pfsync Directory Properties: stable/9/etc/ (props changed) Modified: stable/9/etc/rc.d/pfsync ============================================================================== --- stable/9/etc/rc.d/pfsync Fri Jan 18 13:08:17 2013 (r245603) +++ stable/9/etc/rc.d/pfsync Fri Jan 18 13:16:02 2013 (r245604) @@ -18,13 +18,6 @@ required_modules="pf" pfsync_prestart() { - # XXX Currently pfsync cannot be a module as it must register - # a network protocol in a static kernel table. - if ! kldstat -q -m pfsync; then - warn "pfsync(4) must be statically compiled in the kernel." - return 1 - fi - case "$pfsync_syncdev" in '') warn "pfsync_syncdev is not set."