mirror of https://github.com/fail2ban/fail2ban
commit
503ef5a630
|
@ -89,6 +89,7 @@ Borreli, blotus:
|
||||||
* [7cd6dab] Added help command to fail2ban-client.
|
* [7cd6dab] Added help command to fail2ban-client.
|
||||||
* [c8c7b0b,23bbc60] Better logging of log file read errors.
|
* [c8c7b0b,23bbc60] Better logging of log file read errors.
|
||||||
* [3665e6d] Added code coverage to development process.
|
* [3665e6d] Added code coverage to development process.
|
||||||
|
* [41b9f7b,32d10e9] More complete ssh filter rules to match openssh source.
|
||||||
Pascal Borreli
|
Pascal Borreli
|
||||||
* [a2b29b4] Fixed lots of typos in config files and documentation.
|
* [a2b29b4] Fixed lots of typos in config files and documentation.
|
||||||
hamilton5
|
hamilton5
|
||||||
|
|
37
DEVELOP
37
DEVELOP
|
@ -262,6 +262,38 @@ Takes care about executing start/check/ban/unban/stop commands
|
||||||
Releasing
|
Releasing
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
# Check distribution patches and see if they can be included
|
||||||
|
|
||||||
|
* https://apps.fedoraproject.org/packages/fail2ban/sources
|
||||||
|
* http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/
|
||||||
|
* http://svnweb.freebsd.org/ports/head/security/py-fail2ban/
|
||||||
|
* https://build.opensuse.org/package/show?package=fail2ban&project=openSUSE%3AFactory
|
||||||
|
* http://sophie.zarb.org/sources/fail2ban (Mageia)
|
||||||
|
|
||||||
|
# Check distribution outstanding bugs
|
||||||
|
|
||||||
|
* https://github.com/fail2ban/fail2ban/issues?sort=updated&state=open
|
||||||
|
* http://bugs.debian.org/cgi-bin/pkgreport.cgi?dist=unstable;package=fail2ban
|
||||||
|
* http://bugs.sabayon.org/buglist.cgi?quicksearch=net-analyzer%2Ffail2ban
|
||||||
|
* https://bugs.gentoo.org/buglist.cgi?query_format=advanced&short_desc=fail2ban&bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=IN_PROGRESS&short_desc_type=allwords
|
||||||
|
* https://bugzilla.redhat.com/buglist.cgi?query_format=advanced&bug_status=NEW&bug_status=ASSIGNED&component=fail2ban&classification=Red%20Hat&classification=Fedora
|
||||||
|
* http://www.freebsd.org/cgi/query-pr-summary.cgi?text=fail2ban
|
||||||
|
|
||||||
|
# Provide a release sample to distributors
|
||||||
|
|
||||||
|
* Debian: Yaroslav Halchenko <debian@onerussian.com>
|
||||||
|
http://packages.qa.debian.org/f/fail2ban.html
|
||||||
|
* FreeBSD: Christoph Theis theis@gmx.at>, Nick Hilliard <nick@foobar.org>
|
||||||
|
http://svnweb.freebsd.org/ports/head/security/py-fail2ban/Makefile?view=markup
|
||||||
|
* Fedora: Axel Thimm <Axel.Thimm@atrpms.net>
|
||||||
|
https://apps.fedoraproject.org/packages/fail2ban
|
||||||
|
* Gentoo: netmon@gentoo.org
|
||||||
|
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-analyzer/fail2ban/metadata.xml?view=markup
|
||||||
|
* openSUSE: Stephan Kulow <coolo@suse.com>
|
||||||
|
https://build.opensuse.org/package/users?package=fail2ban&project=openSUSE%3AFactory
|
||||||
|
|
||||||
|
# Wait for feedback from distributors
|
||||||
|
|
||||||
# Ensure the version is correct in ./common/version.py
|
# Ensure the version is correct in ./common/version.py
|
||||||
|
|
||||||
# Add/finalize the corresponding entry in the ChangeLog
|
# Add/finalize the corresponding entry in the ChangeLog
|
||||||
|
@ -296,9 +328,10 @@ Releasing
|
||||||
|
|
||||||
# Email users and development list of release
|
# Email users and development list of release
|
||||||
|
|
||||||
TODO notifying distributors etc.
|
# notify distributors
|
||||||
|
|
||||||
Post Release:
|
Post Release
|
||||||
|
============
|
||||||
|
|
||||||
Add the following to the top of the ChangeLog
|
Add the following to the top of the ChangeLog
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,7 @@ Commands specified in the [Definition] section are executed through a system she
|
||||||
return 0, otherwise error would be logged. Moreover if \fBactioncheck\fR exits with non-0 status, it is taken as indication that firewall status has changed and fail2ban needs to reinitialize itself (i.e. issue \fBactionstop\fR and \fBactionstart\fR commands).
|
return 0, otherwise error would be logged. Moreover if \fBactioncheck\fR exits with non-0 status, it is taken as indication that firewall status has changed and fail2ban needs to reinitialize itself (i.e. issue \fBactionstop\fR and \fBactionstart\fR commands).
|
||||||
|
|
||||||
Tags are enclosed in <>. All the elements of [Init] are tags that are replaced in all action commands. Tags can be added by the
|
Tags are enclosed in <>. All the elements of [Init] are tags that are replaced in all action commands. Tags can be added by the
|
||||||
\fBfail2ban-client\fR using the setctag command.
|
\fBfail2ban-client\fR using the setctag command. \fB<br>\fR is a tag that is always a new line (\\n).
|
||||||
|
|
||||||
More than a single command is allowed to be specified. Each command needs to be on a separate line and indented with whitespaces without blank lines. The following example defines
|
More than a single command is allowed to be specified. Each command needs to be on a separate line and indented with whitespaces without blank lines. The following example defines
|
||||||
two commands to be executed.
|
two commands to be executed.
|
||||||
|
|
Loading…
Reference in New Issue