Dominique Leuenberger 2013-04-04 17:18:12 +00:00 committed by Git OBS Bridge
parent 167eddb397
commit d65db4847f
2 changed files with 5 additions and 2 deletions

View File

@ -81,7 +81,10 @@ case "$1" in
if [ ! -d /tmp/VMwareDnD ]; then
mkdir -m 1777 /tmp/VMwareDnD
fi
/usr/bin/vmware/vmblock-fuse \
if [ ! -d /var/run/vmblock-fuse ]; then
mkdir /var/run/vmblock-fuse
fi
/usr/bin/vmware-vmblock-fuse \
-o subtype=vmware-vmblock,default_permissions,allow_other \
/var/run/vmblock-fuse
modprobe $VMBALLOON

View File

@ -7,7 +7,7 @@ unset SESSION_MANAGER
while [ $RETRY -lt $MAX_RETRY ]; do
if [ -f /proc/fs/vmblock/dev ]; then
if [ -f /var/run/vmblock-fuse/dev ]; then
/usr/bin/vmware-user-suid-wrapper
exit 0
else