Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Nov 2018 06:44:32 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r341287 - stable/12/libexec/rc/rc.d
Message-ID:  <201811300644.wAU6iWnx071653@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Fri Nov 30 06:44:32 2018
New Revision: 341287
URL: https://svnweb.freebsd.org/changeset/base/341287

Log:
  MFC r340754:
  
  Allow forced start of ipmon in special cases where testing is desired
  (or other special cases) and when ipfilter is disabled in rc.conf but
  started by other means.

Modified:
  stable/12/libexec/rc/rc.d/ipmon
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/libexec/rc/rc.d/ipmon
==============================================================================
--- stable/12/libexec/rc/rc.d/ipmon	Fri Nov 30 05:54:30 2018	(r341286)
+++ stable/12/libexec/rc/rc.d/ipmon	Fri Nov 30 06:44:32 2018	(r341287)
@@ -21,7 +21,7 @@ ipmon_precmd()
 	# Continue only if ipfilter or ipnat is enabled and the
 	# ipfilter module is loaded.
 	#
-	if ! checkyesno ipfilter_enable && ! checkyesno ipnat_enable ; then
+	if ! checkyesno ipfilter_enable && ! checkyesno ipnat_enable && ! checkyesno rc_force ; then
 		err 1  "${name} requires either ipfilter or ipnat enabled"
 	fi
 	if ! ${ipfilter_program:-/sbin/ipf} -V | grep -q 'Running: yes' >/dev/null 2>&1; then



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