summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorStuart Herbert <stuart@gentoo.org>2004-04-19 09:13:15 +0000
committerStuart Herbert <stuart@gentoo.org>2004-04-19 09:13:15 +0000
commit67d4228b95cd500531c9c551751f79fc6308bb9d (patch)
tree1402b1ba324888e07312802906fd20362b079517 /eclass
parentcleanup (diff)
downloadhistorical-67d4228b95cd500531c9c551751f79fc6308bb9d.tar.gz
historical-67d4228b95cd500531c9c551751f79fc6308bb9d.tar.bz2
historical-67d4228b95cd500531c9c551751f79fc6308bb9d.zip
Removed die() from global scope
Diffstat (limited to 'eclass')
-rw-r--r--eclass/webapp.eclass12
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass
index c343f72e2cde..8a91f1fe3ce1 100644
--- a/eclass/webapp.eclass
+++ b/eclass/webapp.eclass
@@ -1,6 +1,5 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.5 2004/04/14 16:02:37 stuart Exp $
#
# eclass/webapp.eclass
# Eclass for installing applications to run under a web server
@@ -21,11 +20,6 @@ INHERITED="$INHERITED $ECLASS"
SLOT="${PVR}"
IUSE="$IUSE vhosts"
-if [ -f /etc/vhosts/webapp-config ] ; then
- . /etc/vhosts/webapp-config
-else
- die "Unable to open /etc/vhosts/webapp-config file"
-fi
EXPORT_FUNCTIONS pkg_postinst pkg_setup src_install
@@ -237,6 +231,12 @@ function webapp_src_install ()
function webapp_pkg_setup ()
{
+ if [ -f /etc/vhosts/webapp-config ] ; then
+ . /etc/vhosts/webapp-config
+ else
+ die "Unable to find /etc/vhosts/webapp-config"
+ fi
+
# are we emerging something that is already installed?
if [ -d "${MY_APPROOT}/${MY_APPSUFFIX}" ]; then