From 0f6c54fe4f918b332671d5938048d977378cc7a0 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 19 Jul 2023 20:42:48 +0100 Subject: app-emulation/qemu-guest-agent : fix xkeyboard-config-2.39 compatibility issues (https://bugs.gentoo.org/908699) --- .../qemu-guest-agent/files/qemu-ga.init-r1 | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 app-emulation/qemu-guest-agent/files/qemu-ga.init-r1 (limited to 'app-emulation/qemu-guest-agent/files/qemu-ga.init-r1') diff --git a/app-emulation/qemu-guest-agent/files/qemu-ga.init-r1 b/app-emulation/qemu-guest-agent/files/qemu-ga.init-r1 new file mode 100644 index 00000000..f08c0827 --- /dev/null +++ b/app-emulation/qemu-guest-agent/files/qemu-ga.init-r1 @@ -0,0 +1,24 @@ +#!/sbin/openrc-run +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +start() { + GA_METHOD=${GA_METHOD:-virtio-serial} + GA_PATH=${GA_PATH:-/dev/virtio-ports/org.qemu.guest_agent.0} + + ebegin "Starting QEMU Guest Agent" + + start-stop-daemon --start --pidfile /run/qemu-ga.pid \ + --exec /usr/bin/qemu-ga -- -m ${GA_METHOD} -p ${GA_PATH} \ + -l /var/log/qemu-ga.log -d -f /run/qemu-ga.pid -t /run ${GA_OPTIONS} + + eend $? +} + +stop() { + ebegin "Stopping QEMU Guest Agent" + + start-stop-daemon --stop --pidfile /run/qemu-ga.pid + + eend $? +} -- cgit v1.2.3