diff options
author | ccsmart <ccsmart@smartpal.de> | 2005-08-03 17:47:27 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-03 17:47:27 +0000 |
commit | 083f56b730e6ba109dca549652b9098f7fc5efbf (patch) | |
tree | 50e85e87672005a64b60161740959535f631e94c /packages | |
parent | 57c9f6bd441d7f85d855e59b058df22d076a993c (diff) | |
parent | d1ac05b7fc66dd6daf77043cc209fbd880972d24 (diff) |
merge of 6fb4978a07ca11f96878426dfaf26f3aab7778c8
and e464450f2362ae2c974ed0a3bbc9625a5d27bcba
Diffstat (limited to 'packages')
-rw-r--r-- | packages/cyrus-imapd/cyrus-imapd_2.2.12.bb | 8 | ||||
-rw-r--r-- | packages/cyrus-sasl/cyrus-sasl_2.1.19.bb | 7 | ||||
-rw-r--r-- | packages/postfix/postfix_2.0.20.bb | 4 |
3 files changed, 6 insertions, 13 deletions
diff --git a/packages/cyrus-imapd/cyrus-imapd_2.2.12.bb b/packages/cyrus-imapd/cyrus-imapd_2.2.12.bb index 66c1c19079..f8f8202d10 100644 --- a/packages/cyrus-imapd/cyrus-imapd_2.2.12.bb +++ b/packages/cyrus-imapd/cyrus-imapd_2.2.12.bb @@ -1,7 +1,7 @@ SECTION = "console/network" DEPENDS = "cyrus-sasl db3" LICENSE = "BSD" -PR = "r3" +PR = "r4" DEPENDS += "install-native" SRC_URI = "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-imapd-${PV}.tar.gz \ @@ -13,7 +13,10 @@ SRC_URI = "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-imapd-${PV}.tar.gz \ file://volatiles \ " -inherit autotools +inherit autotools update-rc.d + +INITSCRIPT_NAME = "cyrus" +INITSCRIPT_PARAMS = "start 56 3 4 5 . stop 15 0 1 6 ." EXTRA_OECONF = "--with-auth=unix \ --without-perl \ @@ -38,7 +41,6 @@ do_install_append () { pkg_postinst () { /etc/init.d/populate-volatile.sh - update-rc.d cyrus start 56 3 4 5 . stop 15 0 1 6 . /etc/init.d/cyrus start } diff --git a/packages/cyrus-sasl/cyrus-sasl_2.1.19.bb b/packages/cyrus-sasl/cyrus-sasl_2.1.19.bb index 7d87661861..ebf892ab3e 100644 --- a/packages/cyrus-sasl/cyrus-sasl_2.1.19.bb +++ b/packages/cyrus-sasl/cyrus-sasl_2.1.19.bb @@ -2,7 +2,7 @@ SECTION = "console/network" DEPENDS = "db3 openssl" DESCRIPTION = "Generic client/server library for SASL authentication." LICENSE = "BSD" -PR = "r4" +PR = "r5" SRC_URI = "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-${PV}.tar.gz \ file://berkdb.m4.patch;patch=1" @@ -49,8 +49,3 @@ pkg_postinst () { echo "cyrus" | saslpasswd2 -p -c cyrus chgrp mail /etc/sasldb2 } - -pkg_postrm () { - grep cyrus /etc/passwd && deluser cyrus -} - diff --git a/packages/postfix/postfix_2.0.20.bb b/packages/postfix/postfix_2.0.20.bb index c826dc5469..b9ef1fc2a5 100644 --- a/packages/postfix/postfix_2.0.20.bb +++ b/packages/postfix/postfix_2.0.20.bb @@ -26,7 +26,3 @@ pkg_postinst () { grep postfix /etc/passwd || adduser --disabled-password --home=/var/spool/mail --ingroup nogroup postfix } -pkg_postrm () { - grep postfix /etc/passwd && deluser postfix -} - |