* Added fail2ban, a program that scans log files for repeated failing

login attempts and bans IP addresses.

svn path=/nixpkgs/trunk/; revision=34148
This commit is contained in:
Eelco Dolstra 2012-05-16 22:58:49 +00:00
parent cfc8538326
commit 1d4df9f299
2 changed files with 56 additions and 2 deletions

View file

@ -0,0 +1,53 @@
{ stdenv, fetchurl, pythonPackages, unzip }:
let version = "0.8.6"; in
pythonPackages.buildPythonPackage {
name = "fail2ban-${version}";
src = fetchurl {
url = "https://github.com/fail2ban/fail2ban/zipball/${version}";
name = "fail2ban-${version}.zip";
sha256 = "1linfz5qxmm4225lzi9vawsa79y41d3rcdahvrzlyqlhb02ipd55";
};
buildInputs = [ unzip ];
preConfigure =
''
substituteInPlace setup.cfg \
--replace /usr $out
substituteInPlace setup.py \
--replace /etc $out/etc \
--replace /var $TMPDIR/var \
for i in fail2ban-client fail2ban-regex fail2ban-server; do
substituteInPlace $i \
--replace /usr/share/fail2ban $out/share/fail2ban
done
for i in config/action.d/sendmail*.conf; do
substituteInPlace $i \
--replace /usr/sbin/sendmail sendmail \
--replace /usr/bin/whois whois
done
'';
doCheck = false;
installCommand =
''
python setup.py install --prefix=$out
# A wrapper is not needed.
wrapPythonProgram() { true; }
'';
meta = {
homepage = http://www.fail2ban.org/;
description = "A program that scans log files for repeated failing login attempts and bans IP addresses";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}

View file

@ -662,10 +662,11 @@ let
expect = callPackage ../tools/misc/expect { };
fail2ban = callPackage ../tools/security/fail2ban { };
fakeroot = callPackage ../tools/system/fakeroot { };
fcron = callPackage ../tools/system/fcron { # see also cron
};
fcron = callPackage ../tools/system/fcron { };
fdisk = callPackage ../tools/system/fdisk { };