Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Jun 2021 16:05:12 GMT
From:      Kevin Bowling <kbowling@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: b48d2a658ef9 - main - security/py-fail2ban: Create required start dir
Message-ID:  <202106151605.15FG5CLf055039@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kbowling:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b48d2a658ef96565393b9186cbed85803b2b87e0

commit b48d2a658ef96565393b9186cbed85803b2b87e0
Author:     Florian Koczan <theis@gmx.at>
AuthorDate: 2021-06-15 16:02:44 +0000
Commit:     Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2021-06-15 16:02:44 +0000

    security/py-fail2ban: Create required start dir
    
    Reported at https://github.com/fail2ban/fail2ban/issues/2634
    fail2ban should check and, if necessary create, the required directory.
    
    It is still up to the user to ensure that configuration in fail2ban's
    conf files and FreeBSD's /etc/rc.conf are in sync and that both, pidfile
    and socket reside in the same directory.
    
    PR:             244092
    Approved by:    maintainer
    MFH:            2021Q2
---
 security/py-fail2ban/Makefile          | 1 +
 security/py-fail2ban/files/fail2ban.in | 9 +++++++++
 2 files changed, 10 insertions(+)

diff --git a/security/py-fail2ban/Makefile b/security/py-fail2ban/Makefile
index 017735a03578..cea038fdbc63 100644
--- a/security/py-fail2ban/Makefile
+++ b/security/py-fail2ban/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	fail2ban
 PORTVERSION=	0.11.2
+PORTREVISION=	1
 CATEGORIES=	security python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
diff --git a/security/py-fail2ban/files/fail2ban.in b/security/py-fail2ban/files/fail2ban.in
index b20c0106dba5..a0cd0de97f5c 100644
--- a/security/py-fail2ban/files/fail2ban.in
+++ b/security/py-fail2ban/files/fail2ban.in
@@ -7,6 +7,9 @@
 # Add the following lines to /etc/rc.conf to enable fail2ban:
 # fail2ban_enable="YES"
 # fail2ban_flags="<set as needed>"
+# fail2ban_pidfile="<same as in fail2ban.local>"
+
+# Make sure pidfile and socket point to the same directory
 
 . /etc/rc.subr
 
@@ -15,12 +18,18 @@ PATH=${PATH}:%%PREFIX%%/sbin:%%PREFIX%%/bin
 name="fail2ban"
 rcvar=fail2ban_enable
 
+start_precmd="fail2ban_prestart"
 command="%%PREFIX%%/bin/fail2ban-server"
 command_interpreter="%%PYTHON_CMD%%"
 client="%%PREFIX%%/bin/fail2ban-client"
 
 extra_commands="reload jailstatus"
 
+fail2ban_prestart()
+{
+   install -d -m 0755 "$(dirname ${pidfile})"
+}
+
 load_rc_config ${name}
 
 #



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