Hello community, here is the log from the commit of package sshguard for openSUSE:Factory checked in at 2016-01-12 16:13:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sshguard (Old) and /work/SRC/openSUSE:Factory/.sshguard.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sshguard" Changes: -------- --- /work/SRC/openSUSE:Factory/sshguard/sshguard.changes 2015-10-20 00:05:57.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.sshguard.new/sshguard.changes 2016-01-12 16:13:42.000000000 +0100 @@ -1,0 +2,5 @@ +Mon Jan 11 15:14:38 UTC 2016 - [email protected] + +- Added ip6tables support handles via init and service files + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sshguard.spec ++++++ --- /var/tmp/diff_new_pack.Jd2dRP/_old 2016-01-12 16:13:43.000000000 +0100 +++ /var/tmp/diff_new_pack.Jd2dRP/_new 2016-01-12 16:13:43.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package sshguard # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++++++ sshguard.init ++++++ --- /var/tmp/diff_new_pack.Jd2dRP/_old 2016-01-12 16:13:43.000000000 +0100 +++ /var/tmp/diff_new_pack.Jd2dRP/_new 2016-01-12 16:13:43.000000000 +0100 @@ -53,13 +53,18 @@ iptables_start() { /usr/sbin/iptables -N sshguard + /usr/sbin/ip6tables -N sshguard /usr/sbin/iptables -I INPUT 1 -p tcp --dport $PORTS -j sshguard + /usr/sbin/ip6tables -I INPUT 1 -p tcp --dport $PORTS -j sshguard } iptables_stop() { /usr/sbin/iptables -F sshguard + /usr/sbin/ip6tables -F sshguard /usr/sbin/iptables -D INPUT -p tcp --dport $PORTS -j sshguard + /usr/sbin/ip6tables -D INPUT -p tcp --dport $PORTS -j sshguard /usr/sbin/iptables -X sshguard + /usr/sbin/ip6tables -X sshguard } . /etc/rc.status ++++++ sshguard.service ++++++ --- /var/tmp/diff_new_pack.Jd2dRP/_old 2016-01-12 16:13:43.000000000 +0100 +++ /var/tmp/diff_new_pack.Jd2dRP/_new 2016-01-12 16:13:43.000000000 +0100 @@ -5,12 +5,17 @@ [Service] EnvironmentFile=-/etc/sysconfig/sshguard ExecStartPre=/usr/sbin/iptables -N sshguard +ExecStartPre=/usr/sbin/ip6tables -N sshguard ExecStartPre=/usr/sbin/iptables -I INPUT 1 -p tcp --dport $PORTS -j sshguard +ExecStartPre=/usr/sbin/ip6tables -I INPUT 1 -p tcp --dport $PORTS -j sshguard ExecStart=/usr/sbin/sshguard -a $ATTACK_ATTEMPTS -p $RELEASE_TIMEOUT -s $FORGET_TIMEOUT -w $WHITELIST -b $BLACKLIST -l $MONITORED_LOGS ExecReload=/bin/kill -HUP $MAINPID ExecStopPost=/usr/sbin/iptables -F sshguard +ExecStopPost=/usr/sbin/ip6tables -F sshguard ExecStopPost=/usr/sbin/iptables -D INPUT -p tcp --dport $PORTS -j sshguard +ExecStopPost=/usr/sbin/ip6tables -D INPUT -p tcp --dport $PORTS -j sshguard ExecStopPost=/usr/sbin/iptables -X sshguard +ExecStopPost=/usr/sbin/ip6tables -X sshguard KillMode=process Restart=always
