mirror of https://github.com/fail2ban/fail2ban
just trailing spaces in setup.py
parent
f8983872ad
commit
6004fe7a94
50
setup.py
50
setup.py
|
@ -36,33 +36,33 @@ to reject the IP address or executes user defined
|
||||||
commands.'''
|
commands.'''
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "fail2ban",
|
name = "fail2ban",
|
||||||
version = version,
|
version = version,
|
||||||
description = "Ban IPs that make too many password failure",
|
description = "Ban IPs that make too many password failure",
|
||||||
long_description = longdesc,
|
long_description = longdesc,
|
||||||
author = "Cyril Jaquier",
|
author = "Cyril Jaquier",
|
||||||
author_email = "cyril.jaquier@fail2ban.org",
|
author_email = "cyril.jaquier@fail2ban.org",
|
||||||
url = "http://www.fail2ban.org",
|
url = "http://www.fail2ban.org",
|
||||||
license = "GPL",
|
license = "GPL",
|
||||||
platforms = "Posix",
|
platforms = "Posix",
|
||||||
scripts = [
|
scripts = [
|
||||||
'fail2ban-client',
|
'fail2ban-client',
|
||||||
'fail2ban-server',
|
'fail2ban-server',
|
||||||
'fail2ban-regex'
|
'fail2ban-regex'
|
||||||
],
|
],
|
||||||
packages = [
|
packages = [
|
||||||
'common',
|
'common',
|
||||||
'client',
|
'client',
|
||||||
'server'
|
'server'
|
||||||
],
|
],
|
||||||
data_files = [
|
data_files = [
|
||||||
('/etc/fail2ban',
|
('/etc/fail2ban',
|
||||||
glob("config/*.conf")
|
glob("config/*.conf")
|
||||||
),
|
),
|
||||||
('/etc/fail2ban/filter.d',
|
('/etc/fail2ban/filter.d',
|
||||||
glob("config/filter.d/*.conf")
|
glob("config/filter.d/*.conf")
|
||||||
),
|
),
|
||||||
('/etc/fail2ban/action.d',
|
('/etc/fail2ban/action.d',
|
||||||
glob("config/action.d/*.conf")
|
glob("config/action.d/*.conf")
|
||||||
),
|
),
|
||||||
('/var/run/fail2ban',
|
('/var/run/fail2ban',
|
||||||
|
@ -78,20 +78,20 @@ elements = {
|
||||||
"/etc/":
|
"/etc/":
|
||||||
[
|
[
|
||||||
"fail2ban.conf"
|
"fail2ban.conf"
|
||||||
],
|
],
|
||||||
"/usr/bin/":
|
"/usr/bin/":
|
||||||
[
|
[
|
||||||
"fail2ban.py"
|
"fail2ban.py"
|
||||||
],
|
],
|
||||||
"/usr/lib/fail2ban/firewall/":
|
"/usr/lib/fail2ban/firewall/":
|
||||||
[
|
[
|
||||||
"iptables.py",
|
"iptables.py",
|
||||||
"ipfwadm.py",
|
"ipfwadm.py",
|
||||||
"ipfw.py"
|
"ipfw.py"
|
||||||
],
|
],
|
||||||
"/usr/lib/fail2ban/":
|
"/usr/lib/fail2ban/":
|
||||||
[
|
[
|
||||||
"version.py",
|
"version.py",
|
||||||
"protocol.py"
|
"protocol.py"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue