From roberto at moszumanska.debian.org Sun Mar 19 17:16:01 2017 From: roberto at moszumanska.debian.org (Roberto C. Sanchez) Date: Sun, 19 Mar 2017 17:16:01 +0000 Subject: [Pkg-cyrus-sasl2-commits] [cyrus-sasl2] branch master updated (600f464 -> 96f2563) Message-ID: <20170319171559.12064.79454@moszumanska.debian.org> This is an automated email from the git hooks/post-receive script. roberto pushed a change to branch master in repository cyrus-sasl2. from 600f464 cyrus-sasl2 2.1.27~101-g0780600+dfsg-2 new 96f2563 NMU to help with #856847. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 12 ++++++++++++ debian/libsasl2-modules.postinst | 13 +++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 debian/libsasl2-modules.postinst -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-cyrus-sasl2/cyrus-sasl2.git From roberto at moszumanska.debian.org Sun Mar 19 17:16:01 2017 From: roberto at moszumanska.debian.org (Roberto C. Sanchez) Date: Sun, 19 Mar 2017 17:16:01 +0000 Subject: [Pkg-cyrus-sasl2-commits] [cyrus-sasl2] 01/01: NMU to help with #856847. In-Reply-To: <20170319171559.12064.79454@moszumanska.debian.org> References: <20170319171559.12064.79454@moszumanska.debian.org> Message-ID: This is an automated email from the git hooks/post-receive script. roberto pushed a commit to branch master in repository cyrus-sasl2. commit 96f2563221cf62a76388f5e20c493142c20bbe17 Author: Holger Levsen Date: Sun Mar 19 12:30:33 2017 +0000 NMU to help with #856847. * NMU to help with #856847. * libsasl2-modules.postinst: Remove executable permissions from /etc/logcheck/ignore.d.server/libsasl2-modules on upgrades from jessie. (Closes: #819893) --- debian/changelog | 12 ++++++++++++ debian/libsasl2-modules.postinst | 13 +++++++++++++ 2 files changed, 25 insertions(+) diff --git a/debian/changelog b/debian/changelog index bee6ee6..1bb302a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +cyrus-sasl2 (2.1.27~101-g0780600+dfsg-3) unstable; urgency=medium + + [ Holger Levsen ] + * NMU to help with #856847. + + [ Andreas Beckmann ] + * libsasl2-modules.postinst: Remove executable permissions from + /etc/logcheck/ignore.d.server/libsasl2-modules on upgrades from jessie. + (Closes: #819893) + + -- Holger Levsen Sun, 19 Mar 2017 12:30:33 +0000 + cyrus-sasl2 (2.1.27~101-g0780600+dfsg-2) unstable; urgency=medium * Reinstate Heimdal Kerberos support (Closes: #849706) diff --git a/debian/libsasl2-modules.postinst b/debian/libsasl2-modules.postinst new file mode 100644 index 0000000..20bd990 --- /dev/null +++ b/debian/libsasl2-modules.postinst @@ -0,0 +1,13 @@ +#!/bin/sh +set -e + +if [ "$1" = "configure" ]; then + if dpkg --compare-versions "$2" lt-nl "2.1.27~101-g0780600+dfsg-3~" ; then + # fix permissions 0755 -> 0644 upon upgrades from jessie + if [ -f /etc/logcheck/ignore.d.server/libsasl2-modules ]; then + chmod a-x /etc/logcheck/ignore.d.server/libsasl2-modules + fi + fi +fi + +#DEBHELPER# -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-cyrus-sasl2/cyrus-sasl2.git