diff options
author | Stuart Herbert <stuart@gentoo.org> | 2004-04-29 13:53:24 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2004-04-29 13:53:24 +0000 |
commit | d1e5fa816ec9a928915a56c32dc4fb0b1af75b4a (patch) | |
tree | 641dd58a1dcc9b255882bc540d7849accd43cacc /eclass/webapp.eclass | |
parent | Stable on sparc. (diff) | |
download | historical-d1e5fa816ec9a928915a56c32dc4fb0b1af75b4a.tar.gz historical-d1e5fa816ec9a928915a56c32dc4fb0b1af75b4a.tar.bz2 historical-d1e5fa816ec9a928915a56c32dc4fb0b1af75b4a.zip |
Fix for the missing -h localhost switch (again - grrr)
Diffstat (limited to 'eclass/webapp.eclass')
-rw-r--r-- | eclass/webapp.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass index ac71f1e2de27..42fe68c7a571 100644 --- a/eclass/webapp.eclass +++ b/eclass/webapp.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.11 2004/04/29 10:18:14 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.12 2004/04/29 13:53:24 stuart Exp $ # # eclass/webapp.eclass # Eclass for installing applications to run under a web server @@ -326,7 +326,7 @@ function webapp_pkg_postinst () einfo "${PN}-${PVR} is not installed - using install mode" fi - my_cmd="/usr/sbin/webapp-config $my_mode -u root -d $my_dir ${PN} ${PVR}" + my_cmd="/usr/sbin/webapp-config $my_mode -h localhost -u root -d $my_dir ${PN} ${PVR}" einfo "Running $my_cmd" $my_cmd fi |