From d87262dd706fec50cd150aab3e93883b6337466d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:56:41 +0100 Subject: gentoo resync : 14.07.2018 --- .../open-vm-tools/files/open-vm-tools.initd | 59 ---------------------- 1 file changed, 59 deletions(-) delete mode 100644 app-emulation/open-vm-tools/files/open-vm-tools.initd (limited to 'app-emulation/open-vm-tools/files/open-vm-tools.initd') diff --git a/app-emulation/open-vm-tools/files/open-vm-tools.initd b/app-emulation/open-vm-tools/files/open-vm-tools.initd deleted file mode 100644 index 8b91e4fb4c0a..000000000000 --- a/app-emulation/open-vm-tools/files/open-vm-tools.initd +++ /dev/null @@ -1,59 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -pidfile="/run/vmtoolsd.pid" -command="/usr/bin/vmtoolsd" -command_args="-b ${pidfile}" - -vmblockmntpt="/proc/fs/vmblock/mountPoint" -vmblockfusemntpt="/run/vmblock-fuse" - -depend() { - before checkfs fsck net X -} - -start_vmblock() { - checkpath -d -m 1777 /tmp/VMwareDnD - if command -v vmware-vmblock-fuse > /dev/null; then - modprobe fuse > /dev/null 2>&1 - checkpath -d "${vmblockfusemntpt}" - ebegin "Mounting vmblock-fuse" - vmware-vmblock-fuse \ - -o subtype=vmware-vmblock,default_permissions,allow_other \ - "${vmblockfusemntpt}" - eend $? - else - modprobe vmblock > /dev/null 2>&1 - checkpath -d "${vmblockmntpt}" - ebegin "Mounting vmblock" - mount -t vmblock vmblock "${vmblockmntpt}" - eend $? - fi -} - -stop_vmblock() { - if [ -d "${vmblockfusemntpt}" ]; then - ebegin "Unmounting vmblock-fuse" - umount "${vmblockfusemntpt}" - eend $? - else - ebegin "Unmounting vmblock" - umount "${vmblockmntpt}" - eend $? - fi -} - -start_pre() { - if [ x"${VM_DRAG_AND_DROP}" = xyes ]; then - start_vmblock - fi - return 0 -} - -stop_post() { - if [ x"${VM_DRAG_AND_DROP}" = xyes ]; then - stop_vmblock - fi - return 0 -} -- cgit v1.2.3