diff options
| author | Jonathan Bauer | 2013-05-10 18:58:13 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2013-05-10 18:58:13 +0200 |
| commit | c435ba694701a6cf28a724069f37ca44d4d305bf (patch) | |
| tree | 280df91b4211c318e3043a24a2a35f2814fe6b88 /remote/modules/vmplayer/data | |
| parent | schöne funktion :) (diff) | |
| parent | Add Server install script (diff) | |
| download | tm-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')
| -rwxr-xr-x | remote/modules/vmplayer/data/bin/vmplayer | 6 |
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 $@ |
