Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package iptables-persistent, fixing an important bashism bug. Debdiff attached. unblock iptables-persistent/0.5.7 Thanks, -- System Information: Debian Release: 7.0 APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash
diff -Nru iptables-persistent-0.5.6/debian/changelog iptables-persistent-0.5.7/debian/changelog --- iptables-persistent-0.5.6/debian/changelog 2012-08-20 15:02:27.000000000 +0100 +++ iptables-persistent-0.5.7/debian/changelog 2013-01-04 19:17:21.000000000 +0000 @@ -1,3 +1,10 @@ +iptables-persistent (0.5.7) unstable; urgency=low + + * [e7534a] Fix bashism in debian/iptables-persistent.init. + Thanks to Andreas Rütten (Closes: #683789) + + -- Jonathan Wiltshire <j...@debian.org> Fri, 04 Jan 2013 19:17:00 +0000 + iptables-persistent (0.5.6) unstable; urgency=low * [6b6358] Instead of checking on modules, test a working iptables more diff -Nru iptables-persistent-0.5.6/debian/iptables-persistent.init iptables-persistent-0.5.7/debian/iptables-persistent.init --- iptables-persistent-0.5.6/debian/iptables-persistent.init 2012-08-20 15:02:27.000000000 +0100 +++ iptables-persistent-0.5.7/debian/iptables-persistent.init 2013-01-04 19:17:21.000000000 +0000 @@ -92,7 +92,7 @@ elif [ -x /sbin/iptables ]; then log_action_cont_msg " IPv4" for param in F Z X; do /sbin/iptables -$param; done - for table in $(</proc/net/ip_tables_names) + for table in $(cat /proc/net/ip_tables_names) do /sbin/iptables -t $table -F /sbin/iptables -t $table -Z @@ -109,7 +109,7 @@ elif [ -x /sbin/ip6tables ]; then log_action_cont_msg " IPv6" for param in F Z X; do /sbin/ip6tables -$param; done - for table in $(</proc/net/ip6_tables_names) + for table in $(cat /proc/net/ip6_tables_names) do /sbin/ip6tables -t $table -F /sbin/ip6tables -t $table -Z