diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-02-15 09:58:49 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-02-15 09:58:49 +0000 |
commit | bf9847557f3c9ff074a14f5c12bdfd29716ecf6b (patch) | |
tree | 292e2e3c35f28a7f96a5b13db09649abce0d3228 /app-emulation/virtualbox/files/vboxwebsrv-initd | |
parent | 1560c6c6b29fe42ae49f6bc7f9cd853d8861b292 (diff) |
app-emulation/virtualbox : drop ebuild
Diffstat (limited to 'app-emulation/virtualbox/files/vboxwebsrv-initd')
-rw-r--r-- | app-emulation/virtualbox/files/vboxwebsrv-initd | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/app-emulation/virtualbox/files/vboxwebsrv-initd b/app-emulation/virtualbox/files/vboxwebsrv-initd deleted file mode 100644 index e6009970..00000000 --- a/app-emulation/virtualbox/files/vboxwebsrv-initd +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -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 $? -} |