diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-15 13:01:37 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-15 13:01:37 +0100 |
commit | c6091adbc15987c5c63b555039d8e8547e0c8a32 (patch) | |
tree | 30247b65871f1c04a81b8c1f0e11c6cd2723d223 /app-emulation/virtualbox-bin/files/vboxwebsrv-initd | |
parent | 1bb4e2f999ee3c1ee5cf773aca6c6a71a54d5a9e (diff) |
app-emulation/virtualbox-bin : drop package
Diffstat (limited to 'app-emulation/virtualbox-bin/files/vboxwebsrv-initd')
-rw-r--r-- | app-emulation/virtualbox-bin/files/vboxwebsrv-initd | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/app-emulation/virtualbox-bin/files/vboxwebsrv-initd b/app-emulation/virtualbox-bin/files/vboxwebsrv-initd deleted file mode 100644 index e6009970..00000000 --- a/app-emulation/virtualbox-bin/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 $? -} |