Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | SUMMARY = "Daemon to ban hosts that cause multiple authentication errors." |
| 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" |
| 8 | |
| 9 | LICENSE = "GPL-2.0" |
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=ecabc31e90311da843753ba772885d9f" |
| 11 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 12 | SRCREV ="aa565eb80ec6043317e8430cabcaf9c3f4e61578" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 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 \ |
| 18 | " |
| 19 | |
| 20 | inherit update-rc.d ptest |
| 21 | |
| 22 | S = "${WORKDIR}/git" |
| 23 | |
| 24 | INITSCRIPT_PACKAGES = "${PN}" |
| 25 | INITSCRIPT_NAME = "fail2ban-server" |
| 26 | INITSCRIPT_PARAMS = "defaults 25" |
| 27 | |
| 28 | do_compile_prepend () { |
| 29 | cp ${WORKDIR}/fail2ban_setup.py ${S}/setup.py |
| 30 | } |
| 31 | |
| 32 | do_install_append () { |
| 33 | install -d ${D}/${sysconfdir}/fail2ban |
| 34 | install -d ${D}/${sysconfdir}/init.d |
| 35 | install -m 0755 ${WORKDIR}/initd ${D}${sysconfdir}/init.d/fail2ban-server |
| 36 | chown -R root:root ${D}/${bindir} |
| 37 | } |
| 38 | |
| 39 | do_install_ptest_append () { |
| 40 | install -d ${D}${PTEST_PATH} |
| 41 | sed -i -e 's/##PYTHON##/${PYTHON_PN}/g' ${D}${PTEST_PATH}/run-ptest |
| 42 | install -D ${S}/bin/fail2ban-testcases ${D}${PTEST_PATH} |
| 43 | } |
| 44 | |
| 45 | FILES_${PN} += "/run" |
| 46 | |
| 47 | INSANE_SKIP_${PN}_append = "already-stripped" |
| 48 | |
| 49 | RDEPENDS_${PN} = "sysklogd iptables sqlite3 ${PYTHON_PN} ${PYTHON_PN}-pyinotify" |