This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository tomcat8.
commit db7925e0e6cb12cbfd881fd707901aac828efa64 Author: Emmanuel Bourg <[email protected]> Date: Tue Aug 4 14:16:02 2015 +0200 Changed the authbind configuration to allow IPv6 connections (LP: #1443041) --- debian/changelog | 1 + debian/tomcat8.postinst | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index b07d0f8..6a1e5db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ tomcat8 (8.0.24-2) UNRELEASED; urgency=medium * Team upload. + * Changed the authbind configuration to allow IPv6 connections (LP: #1443041) * Fixed an upgrade error when /etc/tomcat8/tomcat-users.xml is removed (LP: #1010791) diff --git a/debian/tomcat8.postinst b/debian/tomcat8.postinst index fa8b73d..306a0b1 100644 --- a/debian/tomcat8.postinst +++ b/debian/tomcat8.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 $TOMCAT8_USER:$TOMCAT8_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/tomcat8.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

