summaryrefslogtreecommitdiff
path: root/app-emulation/qemu-guest-agent/files/qemu-ga.init-r1
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-08-01 17:45:45 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-08-01 17:45:45 +0100
commit9524cd3e9cfa00e1b11c9f38975cae98cadd1037 (patch)
tree636655700741ec00dc0663a87d8db90fb74f9dee /app-emulation/qemu-guest-agent/files/qemu-ga.init-r1
parentc291e2fe8dab117435b1e75fa1b76f4a329e70ae (diff)
app-emulation/qemu-guest-agent : drop ebuild, use Gentoo's
Diffstat (limited to 'app-emulation/qemu-guest-agent/files/qemu-ga.init-r1')
-rw-r--r--app-emulation/qemu-guest-agent/files/qemu-ga.init-r124
1 files changed, 0 insertions, 24 deletions
diff --git a/app-emulation/qemu-guest-agent/files/qemu-ga.init-r1 b/app-emulation/qemu-guest-agent/files/qemu-ga.init-r1
deleted file mode 100644
index f08c0827..00000000
--- a/app-emulation/qemu-guest-agent/files/qemu-ga.init-r1
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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 $?
-}