summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorBrad Laue <brad@gentoo.org>2003-06-11 20:51:18 +0000
committerBrad Laue <brad@gentoo.org>2003-06-11 20:51:18 +0000
commit2fabf7135332f34ffe03949466c4383b624d5e31 (patch)
tree4ed67134fa529ef1ca4f1ed4477bab6ffd2adc83 /eclass
parentcl hyperspec (diff)
downloadhistorical-2fabf7135332f34ffe03949466c4383b624d5e31.tar.gz
historical-2fabf7135332f34ffe03949466c4383b624d5e31.tar.bz2
historical-2fabf7135332f34ffe03949466c4383b624d5e31.zip
Removing this pending further discussion.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/apache.eclass26
1 files changed, 0 insertions, 26 deletions
diff --git a/eclass/apache.eclass b/eclass/apache.eclass
deleted file mode 100644
index 4ae13c5a58d3..000000000000
--- a/eclass/apache.eclass
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/apache.eclass,v 1.2 2003/06/11 20:13:59 brad Exp $
-#
-# Author: Brad Laue <brad@gentoo.org>
-
-#allow users to customize their data directory by setting the
-#home directory of the 'apache' user elsewhere.
-
-ECLASS=apache
-INHERITED="$INHERITED $ECLASS"
-
-
-get_docroot () {
-
- DOCROOT=`grep ^apache: /etc/passwd | cut -d: -f6`
- if [ -z "$DOCROOT" ]
- then
- DOCROOT="/home/httpd"
- eerror "Please create the apache user and set his home"
- eerror "directory to your desired datadir location."
- eerror "Defaulting to \"/home/httpd\"."
- else
- einfo "$DOCROOT is your Apache data directory ..."
- fi
-}