diff options
author | Max Kalika <max@gentoo.org> | 2003-09-24 22:23:49 +0000 |
---|---|---|
committer | Max Kalika <max@gentoo.org> | 2003-09-24 22:23:49 +0000 |
commit | e34e12a25ede3dcb7cc0e8799505e3f4d6535d0a (patch) | |
tree | 77ac008d5abec2e2cc24b9c9d562ddc28d72456d /net-mail | |
parent | ia64 unmask (diff) | |
download | gentoo-2-e34e12a25ede3dcb7cc0e8799505e3f4d6535d0a.tar.gz gentoo-2-e34e12a25ede3dcb7cc0e8799505e3f4d6535d0a.tar.bz2 gentoo-2-e34e12a25ede3dcb7cc0e8799505e3f4d6535d0a.zip |
Die if postfix-install or postconf fail.
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/postfix/ChangeLog | 5 | ||||
-rw-r--r-- | net-mail/postfix/Manifest | 4 | ||||
-rw-r--r-- | net-mail/postfix/postfix-2.0.16.ebuild | 6 |
3 files changed, 9 insertions, 6 deletions
diff --git a/net-mail/postfix/ChangeLog b/net-mail/postfix/ChangeLog index c8ce453a4c26..bf9f3c9622e2 100644 --- a/net-mail/postfix/ChangeLog +++ b/net-mail/postfix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-mail/postfix # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/ChangeLog,v 1.89 2003/09/24 17:29:40 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/ChangeLog,v 1.90 2003/09/24 22:23:47 max Exp $ + + 24 Sep 2003; Max Kalika <max@gentoo.org> postfix-2.0.16.ebuild: + Die if postfix-install or postconf fail. 24 Sep 2003; Max Kalika <max@gentoo.org> postfix-2.0.16.ebuild: Add -lpthread to libs. Fixes bug 28044. diff --git a/net-mail/postfix/Manifest b/net-mail/postfix/Manifest index bc8273ab6765..ea4243ba87d7 100644 --- a/net-mail/postfix/Manifest +++ b/net-mail/postfix/Manifest @@ -6,9 +6,9 @@ MD5 ef533edc3256c24f6ef2a04444b71404 postfix-1.1.11.20020917-r1.ebuild 4598 MD5 de51d2542b3a6d669a2f523b63e6e1d2 postfix-2.0.12-r1.ebuild 6027 MD5 a0bed4adcd5039175b633ec641660e04 postfix-2.0.14.ebuild 6379 MD5 53caf99049103faa8331297d7f0784e1 postfix-2.0.15-r1.ebuild 6384 -MD5 3996a1bc871f5609fdcaedcb77894d74 ChangeLog 18886 +MD5 5f94c5d9f6140d285b6b19df565282fa ChangeLog 18996 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 -MD5 dc9a86c89c6cee3c513d5c5bdc8a94be postfix-2.0.16.ebuild 6419 +MD5 726c579a53fe643d16970462cb2b6e47 postfix-2.0.16.ebuild 6476 MD5 9486f47c362cb65c1ad4760647a7b3a5 postfix-2.0.11.ebuild 6031 MD5 3b74d1f1c47c8d5630d8f356adb2e28b postfix-1.1.11.20020917.ebuild 4578 MD5 a3eadfcfa0bf6f88ccff41e2d065745b files/postfix-2.0.8_patch.patch 552 diff --git a/net-mail/postfix/postfix-2.0.16.ebuild b/net-mail/postfix/postfix-2.0.16.ebuild index 32c8e63be054..69068be5adf5 100644 --- a/net-mail/postfix/postfix-2.0.16.ebuild +++ b/net-mail/postfix/postfix-2.0.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-2.0.16.ebuild,v 1.2 2003/09/24 17:29:40 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-2.0.16.ebuild,v 1.3 2003/09/24 22:23:47 max Exp $ inherit eutils @@ -141,7 +141,7 @@ src_install () { sample_directory="/usr/share/doc/${PF}/sample" \ manpage_directory="/usr/share/man" \ mail_owner="postfix" \ - setgid_group="postdrop" + setgid_group="postdrop" || die "postfix-install failed" # Install an rmail for UUCP, closing bug #19127 dobin auxiliary/rmail/rmail @@ -162,7 +162,7 @@ src_install () { "alias_database=hash:/etc/mail/aliases" \ "local_destination_concurrency_limit=2" \ "default_destination_concurrency_limit=2" \ - ${mypostconf} + ${mypostconf} || die "postconf failed" insinto /etc/postfix newins "${FILESDIR}/smtp.pass" saslpass |