mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
services: libvirt: Add qemu field.
* gnu/services/virtualization.scm (libvirt-configuration): Add 'qemu' field. (libvirt-service-type): Replace 'qemu' package with the one specified in the service configuration.
This commit is contained in:
parent
2226d5b959
commit
d0fcce8baf
1 changed files with 5 additions and 1 deletions
|
@ -131,6 +131,10 @@
|
||||||
(libvirt
|
(libvirt
|
||||||
(package libvirt)
|
(package libvirt)
|
||||||
"Libvirt package.")
|
"Libvirt package.")
|
||||||
|
(qemu
|
||||||
|
(package qemu)
|
||||||
|
"Qemu package.")
|
||||||
|
|
||||||
(listen-tls?
|
(listen-tls?
|
||||||
(boolean #t)
|
(boolean #t)
|
||||||
"Flag listening for secure TLS connections on the public TCP/IP port.
|
"Flag listening for secure TLS connections on the public TCP/IP port.
|
||||||
|
@ -485,7 +489,7 @@ potential infinite waits blocking libvirt."))
|
||||||
(lambda (config)
|
(lambda (config)
|
||||||
(list
|
(list
|
||||||
(libvirt-configuration-libvirt config)
|
(libvirt-configuration-libvirt config)
|
||||||
qemu)))
|
(libvirt-configuration-qemu config))))
|
||||||
(service-extension activation-service-type
|
(service-extension activation-service-type
|
||||||
%libvirt-activation)
|
%libvirt-activation)
|
||||||
(service-extension shepherd-root-service-type
|
(service-extension shepherd-root-service-type
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue