summaryrefslogtreecommitdiff
path: root/setup.py
blob: 588dfc7cd1be24b1fa8df840b06b1b70128bb625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/usr/bin/env python

# This file is part of Fail2Ban.
#
# Fail2Ban is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Fail2Ban is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Fail2Ban; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

# Author: Cyril Jaquier
# 
# $Revision$

__author__ = "Cyril Jaquier"
__version__ = "$Revision$"
__date__ = "$Date$"
__copyright__ = "Copyright (c) 2004 Cyril Jaquier"
__license__ = "GPL"

from distutils.core import setup
from version import version
from os.path import isfile, join
from sys import exit, argv

longdesc = '''
Fail2Ban scans log files like /var/log/pwdfail or
/var/log/apache/error_log and bans IP that makes
too many password failures. It updates firewall rules
to reject the IP address or executes user defined
commands.'''

setup(
	name = "fail2ban",
	version = version,
	description = "Ban IPs that make too many password failure",
	long_description = longdesc,
	author = "Cyril Jaquier",
	author_email = "lostcontrol@users.sourceforge.net",
	url = "http://fail2ban.sourceforge.net",
	license = "GPL",
	platforms = "Posix",
	scripts =	[
					'fail2ban-client',
					'fail2ban-server',
					'fail2ban-regex'
				],
	py_modules =	['version'],
	packages =	[
					'client',
					'server'
				],
	data_files =	[
						('/etc/fail2ban',
							[
								'config/fail2ban.conf',
								'config/jail.conf'
							]
						),
						('/etc/fail2ban/filter.d',
							[
								'config/filter.d/vsftpd.conf',
								'config/filter.d/apache-auth.conf',
								'config/filter.d/apache-noscript.conf',
								'config/filter.d/proftpd.conf',
								'config/filter.d/sasl.conf',
								'config/filter.d/sshd.conf',
								'config/filter.d/couriersmtp.conf',
								'config/filter.d/postfix.conf',
								'config/filter.d/qmail.conf'
							]
						),
						('/etc/fail2ban/action.d',
							[
								'config/action.d/iptables.conf',
								'config/action.d/mail-whois.conf',
								'config/action.d/mail.conf',
								'config/action.d/hostsdeny.conf'
							]
						)
					]
)

# Do some checks after installation
# Search for obsolete files.
obsoleteFiles = []
elements =	{
				"/etc/":
					[
						"fail2ban.conf"
					],
				"/usr/bin/":
					[
						"fail2ban.py"
					],
				"/usr/lib/fail2ban/firewall/":
					[
						"iptables.py",
						"ipfwadm.py",
						"ipfw.py"
					]
			}

for dir in elements:
	for f in elements[dir]:
		path = join(dir, f)
		if isfile(path):
			obsoleteFiles.append(path)
if obsoleteFiles:
	print
	print "Obsolete files from previous Fail2Ban versions were found on " \
		  "your system."
	print "Please delete them:"
	print
	for f in obsoleteFiles:
		print "\t" + f
	print

# Update config file
if argv[1] == "install":
	print
	print "Please do not forget to update your configuration files."
	print "They are in /etc/fail2ban/."
	print