From: Oyvind Repvik Date: Thu, 11 Aug 2005 15:36:34 +0000 (+0000) Subject: Update postfix to use u-a for /usr/sbin/sendmail (Conflict with ssmtp) X-Git-Tag: Release-2010-05/1~9453^2~3935 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56bf549bcf6204d7e064d7333bcb5de15180e26f;p=openembedded.git Update postfix to use u-a for /usr/sbin/sendmail (Conflict with ssmtp) --- diff --git a/packages/postfix/postfix_2.0.20.bb b/packages/postfix/postfix_2.0.20.bb index a23ac2f3e2..4ef569b309 100644 --- a/packages/postfix/postfix_2.0.20.bb +++ b/packages/postfix/postfix_2.0.20.bb @@ -1,7 +1,7 @@ SECTION = "console/network" DEPENDS = "db3 pcre postfix-native" LICENSE = "IPL" -PR = "r3" +PR = "r4" SRC_URI = "ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-${PV}.tar.gz \ file://${FILESDIR}/makedefs.patch;patch=1 \ @@ -37,6 +37,7 @@ do_install () { install -m 755 ${WORKDIR}/main.cf_2.0 ${D}/var/tmp/main_cf.sh install -m 644 ${WORKDIR}/volatiles ${D}${sysconfdir}/default/volatiles/01_postfix install -m 755 ${WORKDIR}/postfix ${D}${sysconfdir}/init.d/postfix + mv ${D}${sbindir}/sendmail ${D}${sbindir}/sendmail.${PN} } pkg_postinst () { @@ -55,5 +56,9 @@ pkg_postinst () { /etc/init.d/populate-volatile.sh touch /etc/aliases newaliases + update-alternatives --install sendmail sendmail ${sbindir}/sendmail.${PN} 40 } +pkg_postrm () { + update-alternatives --remove sendmail ${sbindir}/sendmail +}