diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-06-09 20:25:22 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-06-11 18:41:41 -0400 |
commit | 52dc19140bb3d60c42bfc59025979217a38bc691 (patch) | |
tree | 36896800cde4b4ab34e2f191b5617974627953d1 /app-emulation/spice-vdagent | |
parent | dev-util/cmake: remove unused patch (diff) | |
download | gentoo-52dc19140bb3d60c42bfc59025979217a38bc691.tar.gz gentoo-52dc19140bb3d60c42bfc59025979217a38bc691.tar.bz2 gentoo-52dc19140bb3d60c42bfc59025979217a38bc691.zip |
app-emulation/spice-vdagent: remove unused file
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16146
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-emulation/spice-vdagent')
-rw-r--r-- | app-emulation/spice-vdagent/files/spice-vdagent.initd-3 | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/app-emulation/spice-vdagent/files/spice-vdagent.initd-3 b/app-emulation/spice-vdagent/files/spice-vdagent.initd-3 deleted file mode 100644 index 255051192b15..000000000000 --- a/app-emulation/spice-vdagent/files/spice-vdagent.initd-3 +++ /dev/null @@ -1,60 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - after dbus -} - -PIDFILE="/var/run/spice-vdagentd/spice-vdagentd.pid" - -start() { - PORT="${PORT:-/dev/virtio-ports/com.redhat.spice.0}" - DEVICE="${DEVICE:-/dev/uinput}" - - ebegin "Checking for required modules and devices" - - if [ ! -d /sys/module/uinput ]; then - modprobe -q uinput - fi - - if [ ! -d /sys/module/uinput ]; then - eerror "Module 'uinput' not loaded or not enabled in the kernel" - eend 1 - return 1 - fi - - if [ ! -c "${PORT}" ] ; then - eerror "Required virtio port does not exist. Make sure you" - eerror "started the virtual machine with appropriate parameters." - eend 1 - return 1 - fi - eend 0 - - if [ ! -c ${DEVICE} -a -c /dev/input/uinput ]; then - DEVICE=/dev/input/uinput - fi - - # recreate the directory since /var/run may reside on a ramdisk - mkdir -p /var/run/spice-vdagentd - - # cleanup stalled socket - rm -f /var/run/spice-vdagentd/spice-vdagent-sock - - ebegin "Starting spice VD agent daemon" - start-stop-daemon \ - --start \ - --pidfile "${PIDFILE}" \ - --exec /usr/sbin/spice-vdagentd \ - -- -u "${DEVICE}" ${SPICE_VDAGENT_ARGS} - eend $? -} - -stop() { - ebegin "Stopping spice VD agent daemon" - start-stop-daemon \ - --stop \ - --pidfile "${PIDFILE}" - eend $? -} |