diff options
Diffstat (limited to 'app-emulation/virtualbox-bin/files/vboxwebsrv-initd')
-rw-r--r-- | app-emulation/virtualbox-bin/files/vboxwebsrv-initd | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app-emulation/virtualbox-bin/files/vboxwebsrv-initd b/app-emulation/virtualbox-bin/files/vboxwebsrv-initd deleted file mode 100644 index 28d1ec07..00000000 --- a/app-emulation/virtualbox-bin/files/vboxwebsrv-initd +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -depend() { - need net -} - -start() { - #checkconfig || return $? - - ebegin "Starting VirtualBox WebService" - start-stop-daemon --start --quiet --user ${VBOXWEBSRV_USER} --pidfile /var/run/vboxwebsrv.pid \ - --background --make-pidfile --exec /opt/bin/vboxwebsrv \ - -- -H ${VBOXWEBSRV_HOST} -p ${VBOXWEBSRV_PORT} -t ${VBOXWEBSRV_TIMEOUT} -i ${VBOXWEBSRV_INTERVAL} - eend $? -} - -stop() { - ebegin "Stopping VirtualBox WebService" - start-stop-daemon --stop --user ${VBOXWEBSRV_USER} --quiet --pidfile /var/run/vboxwebsrv.pid - eend $? -} |