Codebase list cyrus-sasl2 / cc9ce6a
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) Holger Levsen authored 7 years ago Roberto C. Sánchez committed 4 years ago
2 changed file(s) with 25 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 cyrus-sasl2 (2.1.27~101-g0780600+dfsg-3) unstable; urgency=medium
1
2 [ Holger Levsen ]
3 * NMU to help with #856847.
4
5 [ Andreas Beckmann ]
6 * libsasl2-modules.postinst: Remove executable permissions from
7 /etc/logcheck/ignore.d.server/libsasl2-modules on upgrades from jessie.
8 (Closes: #819893)
9
10 -- Holger Levsen <holger@debian.org> Sun, 19 Mar 2017 12:30:33 +0000
11
012 cyrus-sasl2 (2.1.27~101-g0780600+dfsg-2) unstable; urgency=medium
113
214 * Reinstate Heimdal Kerberos support (Closes: #849706)
0 #!/bin/sh
1 set -e
2
3 if [ "$1" = "configure" ]; then
4 if dpkg --compare-versions "$2" lt-nl "2.1.27~101-g0780600+dfsg-3~" ; then
5 # fix permissions 0755 -> 0644 upon upgrades from jessie
6 if [ -f /etc/logcheck/ignore.d.server/libsasl2-modules ]; then
7 chmod a-x /etc/logcheck/ignore.d.server/libsasl2-modules
8 fi
9 fi
10 fi
11
12 #DEBHELPER#