summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Teran <evan.teran@gmail.com>2014-10-11 12:14:05 -0400
committerEvan Teran <evan.teran@gmail.com>2014-10-11 12:14:05 -0400
commitca8c57bf573ea8326c4fb6528fabf190a5cc5ee9 (patch)
treebd0cf28f2ae2046ed718fa80aae4d7b63f3eee9d /app-emulation/vmware-workstation/files/configure-hostd.sh
parentmore synching with mainline (diff)
downloadvmware-ca8c57bf573ea8326c4fb6528fabf190a5cc5ee9.tar.gz
vmware-ca8c57bf573ea8326c4fb6528fabf190a5cc5ee9.tar.bz2
vmware-ca8c57bf573ea8326c4fb6528fabf190a5cc5ee9.zip
more synching with mainline
Diffstat (limited to 'app-emulation/vmware-workstation/files/configure-hostd.sh')
-rw-r--r--app-emulation/vmware-workstation/files/configure-hostd.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/app-emulation/vmware-workstation/files/configure-hostd.sh b/app-emulation/vmware-workstation/files/configure-hostd.sh
deleted file mode 100644
index 480e903..0000000
--- a/app-emulation/vmware-workstation/files/configure-hostd.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-action="$1"
-
-case $action in
- add)
- rc-update -q add vmware-workstation-server default
- rc-service vmware-workstation-server start
- ;;
- remove)
- rc-update -q del vmware-workstation-server default
- rc-service vmware-workstation-server stop
- ;;
- status)
- rc-service -q vmware-workstation-server status
- ;;
- *)
- exit 1
- ;;
-esac