mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
services: qemu-guest-agent: Fix implementation.
Previously, by accessing the raw <qemu-guest-agent-configuration> fields, 'qemu' would match the first field, which is the '%location' field, not the 'qemu' field. It would seem this bug has always been present since the addition of the 'location' field ind132d9f96b
predates the addition of 'qemu-guest-agent-service-type' inf634a0baab
. Fixes <https://issues.guix.gnu.org/54041>. Reported by Ricardo Wurmus <rekado@elephly.net>. * gnu/services/virtualization.scm (qemu-guest-agent-shepherd-service): Use accessors for <qemu-guest-agent-configuration>.
This commit is contained in:
parent
0ca26437cb
commit
01821914e2
1 changed files with 18 additions and 18 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2017 Ryan Moe <ryan.moe@gmail.com>
|
||||
;;; Copyright © 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2018, 2020-2022 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2020,2021 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2021 Timotej Lazar <timotej.lazar@araneo.si>
|
||||
;;;
|
||||
|
@ -866,23 +866,23 @@ (define-configuration qemu-guest-agent-configuration
|
|||
"Path to device or socket used to communicate with the host. If not
|
||||
specified, the QEMU default path is used."))
|
||||
|
||||
(define qemu-guest-agent-shepherd-service
|
||||
(match-lambda
|
||||
(($ <qemu-guest-agent-configuration> qemu device)
|
||||
(list
|
||||
(shepherd-service
|
||||
(provision '(qemu-guest-agent))
|
||||
(documentation "Run the QEMU guest agent.")
|
||||
(start #~(make-forkexec-constructor
|
||||
`(,(string-append #$qemu "/bin/qemu-ga") "--daemon"
|
||||
"--pidfile=/var/run/qemu-ga.pid"
|
||||
"--statedir=/var/run"
|
||||
,@(if #$device
|
||||
(list (string-append "--path=" #$device))
|
||||
'()))
|
||||
#:pid-file "/var/run/qemu-ga.pid"
|
||||
#:log-file "/var/log/qemu-ga.log"))
|
||||
(stop #~(make-kill-destructor)))))))
|
||||
(define (qemu-guest-agent-shepherd-service config)
|
||||
(let ((qemu (qemu-guest-agent-configuration-qemu config))
|
||||
(device (qemu-guest-agent-configuration-device config)))
|
||||
(list
|
||||
(shepherd-service
|
||||
(provision '(qemu-guest-agent))
|
||||
(documentation "Run the QEMU guest agent.")
|
||||
(start #~(make-forkexec-constructor
|
||||
`(,(string-append #$qemu "/bin/qemu-ga") "--daemon"
|
||||
"--pidfile=/var/run/qemu-ga.pid"
|
||||
"--statedir=/var/run"
|
||||
,@(if #$device
|
||||
(list (string-append "--path=" #$device))
|
||||
'()))
|
||||
#:pid-file "/var/run/qemu-ga.pid"
|
||||
#:log-file "/var/log/qemu-ga.log"))
|
||||
(stop #~(make-kill-destructor))))))
|
||||
|
||||
(define qemu-guest-agent-service-type
|
||||
(service-type
|
||||
|
|
Loading…
Reference in a new issue