Re: VMware Workstation 6.0.2 on F8: Re-run vmware-config.pl after every reboot
- From: "Christopher A. Williams" <fedoralists@xxxxxxxxxx>
- Date: Thu, 15 Nov 2007 17:53:32 -0700
On Thu, 2007-11-15 at 15:12 -0800, Tom London wrote:
I've worked around this problem by patching
'/usr/lib/vmware/net-services.sh' as follows:
--- net-services.sh.old 2007-10-01 14:45:51.000000000 -0700
+++ net-services.sh 2007-10-12 10:41:19.000000000 -0700
@@ -258,7 +258,7 @@
# Determine if SELinux is enabled
isSELinuxEnabled() {
- if [ "`cat /selinux/enforce 2> /dev/null`" = "1" ]; then
+ if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled ; then
echo "yes"
else
echo "no"
@@ -616,6 +616,9 @@
if [ ! -e "$vDevice" ]; then
mknod -m 600 "$vDevice" c 119 "$vHubNr"
fi
+ if [ "`isSELinuxEnabled`" = 'yes' ]; then
+ restorecon "$vDevice"
+ fi
}
# Create a virtual host ethernet interface and connect it to a virtual
That did the trick! Thanks a bunch!
Cheers,
Chris
--
====================================================
In theory there is no difference between theory and practice.
In practice there is.
--Yogi Berra
--
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
- References:
- Prev by Date: Re: Samba?
- Next by Date: video turns off just when os starts services when booting F8 after fresh install
- Previous by thread: Re: VMware Workstation 6.0.2 on F8: Re-run vmware-config.pl after every reboot
- Next by thread: Re: VMware Workstation 6.0.2 on F8: Re-run vmware-config.pl after every reboot
- Index(es):
Relevant Pages
|