~ubuntu-branches/ubuntu/trusty/postfix/trusty

« back to all changes in this revision

Viewing changes to debian/init.d

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones, Wietse Venema, LaMont Jones
  • Date: 2011-05-10 08:40:13 UTC
  • mfrom: (1.1.30 upstream) (33.1.10 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110510084013-eeoaeuuet3projj7
Tags: 2.8.3-1
[Wietse Venema]

* 2.8.3
  - Cleanup: postscreen(8) and verify(8) daemons now lock their respective
    cache file exclusively upon open, to avoid massive cache corruption
    by unsupported sharing.
  - Bugfix (introduced with Postfix SASL patch 20000314): don't reuse a
    server SASL handle after authentication failure.  CVE-2011-1720

[LaMont Jones]
* Ack ubuntu fixes for multiarch.  Closes: #620326, #625674

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
                rm -f usr/lib/zoneinfo/localtime
140
140
                mkdir -p usr/lib/zoneinfo
141
141
                ln -sf /etc/localtime usr/lib/zoneinfo/localtime
142
 
                rm -f lib/libnss_*so*
143
 
                tar cf - /lib/libnss_*so* 2>/dev/null |tar xf -
 
142
                if [ "$(echo /lib/libnss_*so*)" != "/lib/libnss_*so" ]; then
 
143
                    rm -f lib/libnss_*so*
 
144
                    tar cf - /lib/libnss_*so* 2>/dev/null |tar xf -
 
145
                fi
 
146
                if [ "$(echo /lib/*/libnss_*so*)" != "/lib/*/libnss_*so" ]; then
 
147
                    rm -f lib/*/libnss_*so*
 
148
                    tar cf - /lib/*/libnss_*so* 2>/dev/null |tar xf -
 
149
                fi
144
150
                umask $oldumask
145
151
            fi
146
152