diff options
author | aptalca <aptalca@users.noreply.github.com> | 2017-03-29 13:16:58 -0400 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-03-29 21:33:52 +0200 |
commit | e272c70ffa6f9509c332f7e92c5ad126ed85ad03 (patch) | |
tree | b5f27ff1df512516c16aa7ac9aa2fdad751a4603 /main/fail2ban | |
parent | c657570f6af20a9697c8559bbb7f98d9474b2e50 (diff) | |
download | aports-e272c70ffa6f9509c332f7e92c5ad126ed85ad03.tar.bz2 aports-e272c70ffa6f9509c332f7e92c5ad126ed85ad03.tar.xz |
main/fail2ban: add ip6tables to runtime dependencies
Fail2ban added ipv6 support in version 0.10.0 and the default ban
actions (such as iptables-common.conf) use ip6tables as well as
iptables. Not having the ip6tables installed results in errors
during jail start.
Diffstat (limited to 'main/fail2ban')
-rw-r--r-- | main/fail2ban/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/fail2ban/APKBUILD b/main/fail2ban/APKBUILD index 87db6ee273..885ae3a8d5 100644 --- a/main/fail2ban/APKBUILD +++ b/main/fail2ban/APKBUILD @@ -3,12 +3,12 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=fail2ban pkgver=0.10.0a1 -pkgrel=0 +pkgrel=1 pkgdesc="Scans log files for login failures then updates iptables to reject originating ip address" url="http://www.fail2ban.org" arch="noarch" license="GPL2+" -depends="python2 iptables logrotate" +depends="python2 iptables ip6tables logrotate" makedepends="python2-dev py-setuptools" source="$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz fail2ban.confd |