From 87b2b18d465c0adbd4afe3be4dd6101a8946a89c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 16 Feb 2021 13:45:59 +0000 Subject: app-emulation/virtualbox-bin : revive --- .../virtualbox-bin/files/vboxwebsrv-initd | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 app-emulation/virtualbox-bin/files/vboxwebsrv-initd (limited to 'app-emulation/virtualbox-bin/files/vboxwebsrv-initd') diff --git a/app-emulation/virtualbox-bin/files/vboxwebsrv-initd b/app-emulation/virtualbox-bin/files/vboxwebsrv-initd new file mode 100644 index 00000000..e6009970 --- /dev/null +++ b/app-emulation/virtualbox-bin/files/vboxwebsrv-initd @@ -0,0 +1,23 @@ +#!/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 $? +} -- cgit v1.2.3