This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository tomcat7.
commit c5ce9bf602240088c14d0bf9f39657fe34c471ec Author: Emmanuel Bourg <[email protected]> Date: Tue Aug 4 14:17:28 2015 +0200 Changed the authbind configuration to allow IPv6 connections (LP: #1443041) --- debian/changelog | 1 + debian/tomcat7.postinst | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index 80654b4..c8279e9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ tomcat7 (7.0.63-2) UNRELEASED; urgency=medium * Team upload. + * Changed the authbind configuration to allow IPv6 connections (LP: #1443041) * Fixed an upgrade error when /etc/tomcat7/tomcat-users.xml is removed (LP: #1010791) diff --git a/debian/tomcat7.postinst b/debian/tomcat7.postinst index 7d8919b..df949df 100644 --- a/debian/tomcat7.postinst +++ b/debian/tomcat7.postinst @@ -65,6 +65,7 @@ case "$1" in chmod 755 /etc/authbind/byuid fi echo '0.0.0.0/0:1,1023' >/etc/authbind/byuid/$TOMCAT_UID + echo '::/0,1-1023' >>/etc/authbind/byuid/$TOMCAT_UID chown $TOMCAT7_USER:$TOMCAT7_GROUP /etc/authbind/byuid/$TOMCAT_UID chmod 700 /etc/authbind/byuid/$TOMCAT_UID fi -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/tomcat7.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

