diff options
author | Mike Auty <ikelos@gentoo.org> | 2007-01-05 18:11:58 +0000 |
---|---|---|
committer | Mike Auty <ikelos@gentoo.org> | 2007-01-05 18:11:58 +0000 |
commit | e0d52de3ac5e2980a958994b322f2d5255b43b65 (patch) | |
tree | e406aeb7b5ed4fa11b3da1e86c71a6222e9ddc3e /eclass/vmware.eclass | |
parent | Convert to use elog. (diff) | |
download | historical-e0d52de3ac5e2980a958994b322f2d5255b43b65.tar.gz historical-e0d52de3ac5e2980a958994b322f2d5255b43b65.tar.bz2 historical-e0d52de3ac5e2980a958994b322f2d5255b43b65.zip |
Fix up the remaining einfo/elog lines in vmware.eclass.
Diffstat (limited to 'eclass/vmware.eclass')
-rw-r--r-- | eclass/vmware.eclass | 26 |
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 } |