diff options
author | Armin Kuster <akuster808@gmail.com> | 2019-12-21 20:12:14 +0000 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2019-12-25 16:04:27 +0000 |
commit | 4786213cab4dfdadade1a4527976b5c8bb4011d4 (patch) | |
tree | 3064eba096a9ce1eaace72a4615036ae987686f9 | |
parent | 36ebd09b06b1b615fd63611a1f571ae3b6a0da8c (diff) | |
download | meta-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.bb | 51 |
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 @@ | |||
1 | inherit setuptools3 | 1 | SUMMARY = "Daemon to ban hosts that cause multiple authentication errors." |
2 | require python-fail2ban.inc | 2 | DESCRIPTION = "Fail2Ban scans log files like /var/log/auth.log and bans IP addresses having too \ |
3 | many failed login attempts. It does this by updating system firewall rules to reject new \ | ||
4 | connections from those IP addresses, for a configurable amount of time. Fail2Ban comes \ | ||
5 | out-of-the-box ready to read many standard log files, such as those for sshd and Apache, \ | ||
6 | and is easy to configure to read any log file you choose, for any error you choose." | ||
7 | HOMEPAGE = "http://www.fail2ban.org" | ||
3 | 8 | ||
4 | RDEPENDS_${PN}-ptest = "python3-core python3-io python3-modules python3-fail2ban" | 9 | LICENSE = "GPL-2.0" |
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=ecabc31e90311da843753ba772885d9f" | ||
5 | 11 | ||
6 | SRC_URI += " \ | 12 | SRCREV ="aa565eb80ec6043317e8430cabcaf9c3f4e61578" |
13 | SRC_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 | |||
21 | inherit update-rc.d ptest setuptools3 | ||
22 | |||
23 | S = "${WORKDIR}/git" | ||
24 | |||
25 | do_compile_prepend () { | ||
26 | cp ${WORKDIR}/fail2ban_setup.py ${S}/setup.py | ||
27 | } | ||
28 | |||
29 | do_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 | |||
36 | do_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 | |||
42 | FILES_${PN} += "/run" | ||
43 | |||
44 | INITSCRIPT_PACKAGES = "${PN}" | ||
45 | INITSCRIPT_NAME = "fail2ban-server" | ||
46 | INITSCRIPT_PARAMS = "defaults 25" | ||
47 | |||
48 | INSANE_SKIP_${PN}_append = "already-stripped" | ||
49 | |||
50 | RDEPENDS_${PN} = "sysklogd iptables sqlite3 ${PYTHON_PN} ${PYTHON_PN}-pyinotify" | ||
51 | RDEPENDS_${PN}-ptest = "python3-core python3-io python3-modules python3-fail2ban" | ||