Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 6882 - postfix-1.1.11-r5.ebuild Typo
Summary: postfix-1.1.11-r5.ebuild Typo
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Server (show other bugs)
Hardware: x86 Linux
: Low minor (vote)
Assignee: Nick Hadaway
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-08-22 07:13 UTC by Chris Williams
Modified: 2003-02-04 19:42 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chris Williams 2002-08-22 07:13:44 UTC
Emerging postfix-1.1.11-r5.ebuild (and -r4) creates an extraneous directory
called 0755 in the current working directory.   This is the result of a broken
install command in the pkg_postinst() function.   

Here's a patch (assuming it makes -r6):

--- postfix-1.1.11-r5.ebuild    Wed Aug 14 22:20:52 2002
+++ postfix-1.1.11-r6.ebuild    Thu Aug 22 22:08:44 2002
@@ -166,7 +166,7 @@
 }

 pkg_postinst() {
-       install -d 0755 ${ROOT}/var/spool/postfix
+       install -d -m 0755 ${ROOT}/var/spool/postfix

        if [ "${postfix_installed}" = "yes" ] ; then
                ewarn "If you've upgraded from <postfix-1.1.8, you must update"
Comment 1 Nicholas Wourms 2002-08-22 10:13:21 UTC
That isn't the only problem.  If you have sasl v2 installed, it is trying to
copy a non-existant file "smtpd2.conf" that is supposed to be in the files dir.
 I looked in the "Attic" on cvsweb and it isn't there either.  I guess it should
have been committed, but wasn't?
Comment 2 Nick Hadaway 2002-08-22 19:31:29 UTC
Updates have been made to the 1.1.11-r5.ebuild.  Please install and test and 
report back on this bug report.  The updated ebuild should be available in 
portage within 24 hours.

Comment 3 Chris Williams 2002-08-23 20:37:06 UTC
Extraneous directory problem fixed.  Thanks for the quick response.
Comment 4 Nicholas Wourms 2002-08-23 20:47:44 UTC
Yup, it's working for me as well...
Comment 5 Nick Hadaway 2002-08-25 11:21:24 UTC
Closing bug due to success reports.