diff options
author | 2017-11-01 14:45:43 +0100 | |
---|---|---|
committer | 2017-11-01 14:46:23 +0100 | |
commit | a2d54401ad16fe676b80bb5618a569ebe02636d5 (patch) | |
tree | 5a28f686ca7e6e2c030a719eaaface3cb490ac84 /app-emulation/vmware-player/files/vmware-11.0.rc | |
parent | app-misc/fsniper: patch against obsolete C call. (diff) | |
download | gentoo-a2d54401ad16fe676b80bb5618a569ebe02636d5.tar.gz gentoo-a2d54401ad16fe676b80bb5618a569ebe02636d5.tar.bz2 gentoo-a2d54401ad16fe676b80bb5618a569ebe02636d5.zip |
app-emulation/vmware-*: Remove. Please use the vmware overlay.
Diffstat (limited to 'app-emulation/vmware-player/files/vmware-11.0.rc')
-rw-r--r-- | app-emulation/vmware-player/files/vmware-11.0.rc | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/app-emulation/vmware-player/files/vmware-11.0.rc b/app-emulation/vmware-player/files/vmware-11.0.rc deleted file mode 100644 index 2ba649336fdf..000000000000 --- a/app-emulation/vmware-player/files/vmware-11.0.rc +++ /dev/null @@ -1,43 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need localmount - use net -} - -start() { - ebegin Starting VMware USB Arbitrator - #start-stop-daemon --start --exec @@BINDIR@@/vmware-usbarbitrator - @@BINDIR@@/vmware-usbarbitrator - eend $? - ebegin Starting VMware services - - # quiet for vmci because it may not be there - modprobe -vq vmci || modprobe -v vmw_vmci - eend $? - - # vmci or vmw_vmci was loaded by the previous modprobe - # no need to do it here - modprobe -av vmmon vsock vmblock vmnet - eend $? - @@BINDIR@@/vmware-networks --start - eend $? -} - -stop() { - ebegin Stopping VMware USB Arbitrator - #start-stop-daemon --stop --exec @@BINDIR@@/vmware-usbarbitrator - killall --wait @@BINDIR@@/vmware-usbarbitrator - eend $? - @@BINDIR@@/vmware-networks --stop - eend $? - ebegin Stopping VMware services - modprobe -rv vsock vmmon vmblock vmnet - eend $? - - # quiet for vmci because it may not be there - modprobe -rvq vmci || modprobe -rv vmw_vmci - eend $? -} |