Comment 2 for bug 624522

Revision history for this message
Nikos (okin7) wrote :

Please note that one more file needs to be fixed :

/etc/resolvconf/update-libc.d/postfix

#!/bin/sh -e

# make sure we're still here...
[ -x /usr/sbin/postconf ] || exit 0

# iterate in each instance
for INSTANCE_CONF_DIR in `postmulti -l | tr -s " " " " | cut -d" " -f4`
do
    cp /etc/resolv.conf $(/usr/sbin/postconf -c $INSTANCE_CONF_DIR -h queue_directory)/etc/resolv.conf
done

/etc/init.d/postfix reload >/dev/null 2>&1 || exit 0

exit 0