diff options
author | ccsmart <ccsmart@smartpal.de> | 2005-08-03 18:04:42 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-03 18:04:42 +0000 |
commit | 6a240f14289e5ebc59ca4e258da937ec72ecb789 (patch) | |
tree | fe8bf734d3043ff440b8a786dd57d2034677bbe2 /packages | |
parent | c9d518f49e88dead9bcc57c54a9166aac60ab022 (diff) | |
parent | 083f56b730e6ba109dca549652b9098f7fc5efbf (diff) |
merge of 01bc1e4867d2ea980ba68da0060879a34778c6c0
and 0e1ab5b1f00b1449bf4276ee3dc4eca65edea52c
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 -} - |