summaryrefslogtreecommitdiffstats
path: root/remote/modules/vmplayer/data/bin
diff options
context:
space:
mode:
authorJonathan Bauer2013-05-10 18:58:13 +0200
committerJonathan Bauer2013-05-10 18:58:13 +0200
commitc435ba694701a6cf28a724069f37ca44d4d305bf (patch)
tree280df91b4211c318e3043a24a2a35f2814fe6b88 /remote/modules/vmplayer/data/bin
parentschöne funktion :) (diff)
parentAdd Server install script (diff)
downloadtm-scripts-c435ba694701a6cf28a724069f37ca44d4d305bf.tar.gz
tm-scripts-c435ba694701a6cf28a724069f37ca44d4d305bf.tar.xz
tm-scripts-c435ba694701a6cf28a724069f37ca44d4d305bf.zip
Merge branch 'master' of simonslx:openslx-ng/tm-scripts
Diffstat (limited to 'remote/modules/vmplayer/data/bin')
-rwxr-xr-xremote/modules/vmplayer/data/bin/vmplayer6
1 files changed, 4 insertions, 2 deletions
diff --git a/remote/modules/vmplayer/data/bin/vmplayer b/remote/modules/vmplayer/data/bin/vmplayer
index d4cd1d65..874c3d96 100755
--- a/remote/modules/vmplayer/data/bin/vmplayer
+++ b/remote/modules/vmplayer/data/bin/vmplayer
@@ -1,8 +1,10 @@
#!/bin/sh
for mod in /lib/modules/vmware/*.ko; do
- insmod "$mod" || xmessage "Could not load kernel module $mod. vmplayer might fail."
+ insmod "$mod" && continue
+ xmessage "Could not load kernel module $mod. vmplayer might fail."
done
-/bin/vmplayer-bin $@
+export LIBCONF_DIR=/usr/lib/vmware/libconf
+/usr/lib/vmware/bin/vmplayer $@