summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Auty <ikelos@gentoo.org>2007-01-05 18:11:58 +0000
committerMike Auty <ikelos@gentoo.org>2007-01-05 18:11:58 +0000
commitc3924fff8258c86afab847a60976a6b7026b18ab (patch)
tree23cea1ab0689cfecf3768fd1b02677d1412fdbe4 /eclass/vmware.eclass
parentConvert to use elog. (diff)
downloadgentoo-2-c3924fff8258c86afab847a60976a6b7026b18ab.tar.gz
gentoo-2-c3924fff8258c86afab847a60976a6b7026b18ab.tar.bz2
gentoo-2-c3924fff8258c86afab847a60976a6b7026b18ab.zip
Fix up the remaining einfo/elog lines in vmware.eclass.
Diffstat (limited to 'eclass/vmware.eclass')
-rw-r--r--eclass/vmware.eclass26
1 files changed, 13 insertions, 13 deletions
diff --git a/eclass/vmware.eclass b/eclass/vmware.eclass
index 90cc1d621e44..5638ff93b29e 100644
--- a/eclass/vmware.eclass
+++ b/eclass/vmware.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/vmware.eclass,v 1.19 2007/01/05 17:52:20 ikelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vmware.eclass,v 1.20 2007/01/05 18:11:58 ikelos Exp $
# This eclass is for all vmware-* ebuilds in the tree and should contain all
# of the common components across the multiple packages.
@@ -365,22 +365,22 @@ vmware_pkg_postinst() {
done
echo
- einfo "You need to run "
- einfo " ${VMWARE_INSTALL_DIR}/bin/${config_program}"
- einfo "to complete the install."
+ elog "You need to run "
+ elog " ${VMWARE_INSTALL_DIR}/bin/${config_program}"
+ elog "to complete the install."
echo
einfo "For VMware Add-Ons just visit"
einfo "http://www.vmware.com/download/downloadaddons.html"
echo
- einfo "After configuring, run ${PN} to launch"
+ elog "After configuring, run ${PN} to launch"
echo
if [ "${product}" == "vmware" -o "${product}" == "vmware-tools" ]
then
- einfo "Also note that when you reboot you should run:"
- einfo "/etc/init.d/${product} start"
- einfo "before trying to run ${product}. Or you could just add it to"
- einfo "the default runlevel:"
- einfo "rc-update add ${product} default"
+ elog "Also note that when you reboot you should run:"
+ elog " /etc/init.d/${product} start"
+ elog "before trying to run ${product}. Or you could just add it to"
+ elog "the default runlevel:"
+ elog " rc-update add ${product} default"
echo
ewarn "VMWare allows for the potential of overwriting files as root. Only"
ewarn "give VMWare access to trusted individuals."
@@ -399,8 +399,8 @@ vmware_pkg_postrm() {
product_extras=" and /etc/init.d/${product}"
fi
echo
- einfo "To remove all traces of ${product} you will need to remove the files"
- einfo "in ${config_dir}${product_extras}."
- einfo "Don't forget to rmmod the vm* modules, either."
+ elog "To remove all traces of ${product} you will need to remove the files"
+ elog "in ${config_dir}${product_extras}."
+ elog "If the vmware-modules package is installed, you may no longer need it."
echo
}