Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 33963 - make webapp-apache.eclass silent
Summary: make webapp-apache.eclass silent
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Unspecified (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Gentoo Web Application Packages Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-11-20 14:12 UTC by Marius Mauch (RETIRED)
Modified: 2004-01-19 14:52 UTC (History)
0 users

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 Marius Mauch (RETIRED) gentoo-dev 2003-11-20 14:12:53 UTC
several webapp ebuilds call webapp-detect of any function. This tries to access
files provided by apache, however if these files aren't present the code prints
error messages. But ebuild-code outside functions should not print anything, so if
it's not possible to move webapp-detect inside a function please make that 
function silent.
Comment 1 kurt 2003-11-24 15:11:45 UTC
--- webapp-apache.eclass.orig	2003-11-21 08:10:15.000000000 +0100
+++ webapp-apache.eclass	2003-11-24 23:48:47.000000000 +0100
@@ -62,7 +62,7 @@
 	# temporary fix for webapps
 	HTTPD_ROOT="/var/www/localhost/htdocs/"
 	keepdir "$HTTPD_ROOT"
-	fowners "$HTTPD_USER"."$HTTPD_GROUP" "$HTTPD_ROOT"
+	fowners "$HTTPD_USER":"$HTTPD_GROUP" "$HTTPD_ROOT"
 	fperms 755 "$HTTPD_ROOT"
 }

Comment 2 Stuart Herbert (RETIRED) gentoo-dev 2003-11-26 22:37:49 UTC
Done.