summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2019-12-21 20:12:14 +0000
committerArmin Kuster <akuster808@gmail.com>2019-12-25 16:04:27 +0000
commit4786213cab4dfdadade1a4527976b5c8bb4011d4 (patch)
tree3064eba096a9ce1eaace72a4615036ae987686f9
parent36ebd09b06b1b615fd63611a1f571ae3b6a0da8c (diff)
downloadmeta-security-4786213cab4dfdadade1a4527976b5c8bb4011d4.tar.gz
python3-fail2ban: include python-fail2ban.inc
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--recipes-security/fail2ban/python3-fail2ban_0.10.4.0.bb51
1 files changed, 47 insertions, 4 deletions
diff --git a/recipes-security/fail2ban/python3-fail2ban_0.10.4.0.bb b/recipes-security/fail2ban/python3-fail2ban_0.10.4.0.bb
index 23ef027..53f94ff 100644
--- a/recipes-security/fail2ban/python3-fail2ban_0.10.4.0.bb
+++ b/recipes-security/fail2ban/python3-fail2ban_0.10.4.0.bb
@@ -1,8 +1,51 @@
1inherit setuptools3 1SUMMARY = "Daemon to ban hosts that cause multiple authentication errors."
2require python-fail2ban.inc 2DESCRIPTION = "Fail2Ban scans log files like /var/log/auth.log and bans IP addresses having too \
3many failed login attempts. It does this by updating system firewall rules to reject new \
4connections from those IP addresses, for a configurable amount of time. Fail2Ban comes \
5out-of-the-box ready to read many standard log files, such as those for sshd and Apache, \
6and is easy to configure to read any log file you choose, for any error you choose."
7HOMEPAGE = "http://www.fail2ban.org"
3 8
4RDEPENDS_${PN}-ptest = "python3-core python3-io python3-modules python3-fail2ban" 9LICENSE = "GPL-2.0"
10LIC_FILES_CHKSUM = "file://COPYING;md5=ecabc31e90311da843753ba772885d9f"
5 11
6SRC_URI += " \ 12SRCREV ="aa565eb80ec6043317e8430cabcaf9c3f4e61578"
13SRC_URI = " \
14 git://github.com/fail2ban/fail2ban.git;branch=0.11 \
15 file://initd \
16 file://fail2ban_setup.py \
17 file://run-ptest \
7 file://0001-To-fix-build-error-of-xrang.patch \ 18 file://0001-To-fix-build-error-of-xrang.patch \
8" 19"
20
21inherit update-rc.d ptest setuptools3
22
23S = "${WORKDIR}/git"
24
25do_compile_prepend () {
26 cp ${WORKDIR}/fail2ban_setup.py ${S}/setup.py
27}
28
29do_install_append () {
30 install -d ${D}/${sysconfdir}/fail2ban
31 install -d ${D}/${sysconfdir}/init.d
32 install -m 0755 ${WORKDIR}/initd ${D}${sysconfdir}/init.d/fail2ban-server
33 chown -R root:root ${D}/${bindir}
34}
35
36do_install_ptest_append () {
37 install -d ${D}${PTEST_PATH}
38 sed -i -e 's/##PYTHON##/${PYTHON_PN}/g' ${D}${PTEST_PATH}/run-ptest
39 install -D ${S}/bin/fail2ban-testcases ${D}${PTEST_PATH}
40}
41
42FILES_${PN} += "/run"
43
44INITSCRIPT_PACKAGES = "${PN}"
45INITSCRIPT_NAME = "fail2ban-server"
46INITSCRIPT_PARAMS = "defaults 25"
47
48INSANE_SKIP_${PN}_append = "already-stripped"
49
50RDEPENDS_${PN} = "sysklogd iptables sqlite3 ${PYTHON_PN} ${PYTHON_PN}-pyinotify"
51RDEPENDS_${PN}-ptest = "python3-core python3-io python3-modules python3-fail2ban"