Package: postfix Version: 2.4.3-1 In version 2.2.10-1: the script /etc/resolvconf/update-libc.d/postfix during startup and shutdown generates an error due to the fact that in line 7 it tries to reload postfix via init.d script even if postfix isn't running (and since resolvconf is update before postfix startup and after postfix shutdown, it never works).
Tags: patch diff -u postfix-2.4.3/debian/update-libc.d postfix-2.4.3/debian/update-libc.d --- postfix-2.4.3/debian/update-libc.d +++ postfix-2.4.3/debian/update-libc.d @@ -5,5 +5,5 @@ cp /etc/resolv.conf $(/usr/sbin/postconf -h queue_directory)/etc/resolv.conf -/etc/init.d/postfix reload >/dev/null 2>&1 +/etc/init.d/postfix reload >/dev/null 2>&1 || exit 0 exit 0 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

