diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-12-25 08:07:06 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-12-25 08:07:06 +0000 |
commit | 7bcbf6327c59bbf5419772a06fb41a27fbe94060 (patch) | |
tree | 4e6f25843650a2b12f4c15a1129445e8c9b11e19 /eclass/webapp.eclass | |
parent | Version bump and fix building in parallel. (diff) | |
download | historical-7bcbf6327c59bbf5419772a06fb41a27fbe94060.tar.gz historical-7bcbf6327c59bbf5419772a06fb41a27fbe94060.tar.bz2 historical-7bcbf6327c59bbf5419772a06fb41a27fbe94060.zip |
Add an ewarn message with a reference to bug #124440 in case users experience a deadlock.
Diffstat (limited to 'eclass/webapp.eclass')
-rw-r--r-- | eclass/webapp.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass index 36bb4fa199aa..d98db63112b6 100644 --- a/eclass/webapp.eclass +++ b/eclass/webapp.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.45 2006/10/14 20:27:21 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.46 2006/12/25 08:07:06 zmedico Exp $ # # eclass/webapp.eclass # Eclass for installing applications to run under a web server @@ -501,6 +501,8 @@ function webapp_pkg_postinst () if [ "${IS_UPGRADE}" = "1" ] ; then elog "Removing old version ${REMOVE_PKG}" + ewarn "This action may result in a deadlock. Please refer to" + ewarn "http://bugs.gentoo.org/show_bug.cgi?id=124440 for more information." emerge -C "${REMOVE_PKG}" fi |