diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-06-13 10:39:22 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-06-13 10:39:22 +0100 |
commit | 9452a6e87b6c2c70513bc47a2470bf9f1168920e (patch) | |
tree | 8ac67e26b45f34d71c5aab3621813b100a0d5f00 /app-emulation/spice-vdagent | |
parent | f516638b7fe9592837389826a6152a7e1b251c54 (diff) |
gentoo resync : 13.06.2020
Diffstat (limited to 'app-emulation/spice-vdagent')
-rw-r--r-- | app-emulation/spice-vdagent/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/spice-vdagent/files/spice-vdagent.initd-3 | 60 |
2 files changed, 0 insertions, 61 deletions
diff --git a/app-emulation/spice-vdagent/Manifest b/app-emulation/spice-vdagent/Manifest index c7cbb1305435..31c728f521c8 100644 --- a/app-emulation/spice-vdagent/Manifest +++ b/app-emulation/spice-vdagent/Manifest @@ -1,5 +1,4 @@ AUX spice-vdagent.confd-2 314 BLAKE2B 93d93f9e03e3aba9d889703ad24d08401222cf9d4b5fd0e72001bd0c0cf261d9f6879d1d0a89b51fc34dee2b15729425c694aca5522b1918f01edeea9b38b536 SHA512 ef3e02c65dd83ed0d4b1eaad9c6000a9d5d53fbbf2c19fe9604583f85478c92276b3b80554bd1573af6866e242c484f02da5c3500c0b4c430d3af0de755eed38 -AUX spice-vdagent.initd-3 1475 BLAKE2B 0d39828bd5be6271e0d3f1f7262751e1bee263bb52c0d409f5e85c51ac69b2ed1f6fa1b0ea377cae0e2879ed7d0ae39b93219fc961ed34c3d1d42b771a452932 SHA512 11e61f5cd8081231318248e332f081e43a36fb2315c70d52e436e83a14f1fca5ee4ddd8016e8c9d639cdafe69c3e5f360fb66dc2405f0d45f817130221ece516 AUX spice-vdagent.initd-4 1465 BLAKE2B f03734461fac2ec869b48a3e2b4c4bd7ebfe152f3d2563fb5005477ce1eebbc887ebe0cc8e317e5b80de073b3cc27dc1475e86b2127a7f4907470e398112d05e SHA512 a10614b9058f9a6d70d350d2764809646251fe555abf7127ce49b2e794545a72a500c9b6ab9e5dcc632253a1ed24017392b6d0446d469ffce954d00e5c96a6c8 DIST spice-vdagent-0.19.0.tar.bz2 151356 BLAKE2B b7a99a7205d955b27edfe483746e3f267a6e0b7885c4b8146ba42d99b581cf4e1748b503a37a3d6b66623ef2515b42756f2e6a5a4775d56def7aa396bd0dfb4f SHA512 f5056dfe66df3ee8205549be22bbc8c17d2196c8448eda97f01659ff30c34d9929f330767d7fafec557dc5f7fb9b65eaf85973193b38df774042de9b72d6e60d DIST spice-vdagent-0.20.0.tar.bz2 152510 BLAKE2B b00caadab385f4208bd18b78a006831953f99387e55fd86226efffdf537426627f02bb46708173b700eecd21f598a0db94f454c5252b0f4bfb93c30b39d69d16 SHA512 a6288e056645c071834f9ce5800669cb64e0f86a5efeb8eec61ac1e11f1fd56f7da8ea19b28a94c88741d794a0290fac9bcf74d45bcef271c2c5abfb2573a8e1 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 $? -} |