diff --git a/CHANGELOG b/CHANGELOG index 31040708..6cbe1675 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,9 +4,18 @@ |_| \__,_|_|_/___|_.__/\__,_|_||_| ============================================================= -Fail2Ban (version 0.4.0) 04/24/2005 +Fail2Ban (version 0.4.1) 06/30/2005 ============================================================= +ver. 0.4.1 (06/30/2005) - stable +---------- +- Fixed textToDNS method which generated wrong matches for + "rhost=12-xyz...". Thanks to Tom Pike +- fail2ban.conf modified for readability. Thanks to Iain Lea +- Added an initd script for Gentoo +- Changed default PID lock file location from /tmp to + /var/run + ver. 0.4.0 (04/24/2005) - stable ---------- - Fixed textToDNS which did not recognize strings like diff --git a/MANIFEST b/MANIFEST index 68e7eb3b..330728f8 100644 --- a/MANIFEST +++ b/MANIFEST @@ -17,3 +17,5 @@ confreader/configreader.py utils/__init__.py utils/dns.py config/fail2ban.conf.default +config/gentoo-initd +config/gentoo-confd diff --git a/README b/README index a10875a9..7882c60d 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ |_| \__,_|_|_/___|_.__/\__,_|_||_| ============================================================= -Fail2Ban (version 0.4.0) 04/24/2005 +Fail2Ban (version 0.4.1) 06/30/2005 ============================================================= Fail2Ban scans log files like /var/log/pwdfail and bans IP @@ -58,8 +58,8 @@ Require: python-2.3 (http://www.python.org) To install, just do: -> tar xvfj fail2ban-0.3.1.tar.bz2 -> cd fail2ban-0.3.1 +> tar xvfj fail2ban-0.4.1.tar.bz2 +> cd fail2ban-0.4.1 > python setup.py install This will install Fail2Ban into /usr/lib/fail2ban. The @@ -75,6 +75,13 @@ to see if everything is alright. You can configure fail2ban with a config file. Copy config/fail2ban.conf.default to /etc/fail2ban.conf. +Gentoo users can use the initd script available in config/. +Copy gentoo-initd to /etc/init.d/fail2ban and gentoo-confd +to /etc/conf.d/fail2ban. You can start fail2ban and add it +to your default runlevel: + +> /etc/init.d/fail2ban start +> rc-update add fail2ban default Configuration: -------------- @@ -113,7 +120,8 @@ Cyril Jaquier: Thanks: ------- -Kévin Drapel, Marvin Rouge, Sireyessire, Robert Edeker +Kévin Drapel, Marvin Rouge, Sireyessire, Robert Edeker, +Tom Pike, Iain Lea License: diff --git a/version.py b/version.py index 8334c777..3d2fe563 100644 --- a/version.py +++ b/version.py @@ -24,4 +24,4 @@ __date__ = "$Date$" __copyright__ = "Copyright (c) 2004 Cyril Jaquier" __license__ = "GPL" -version = "0.4.0" +version = "0.4.1"