summaryrefslogtreecommitdiff
path: root/src/Propellor/Property
diff options
context:
space:
mode:
authorDavid Bremner2019-06-01 10:55:49 -0300
committerJoey Hess2019-06-15 12:32:30 -0400
commit71de611d01156824e2ca3a8fac28e383b4be3e46 (patch)
tree69e70b747d99439630943d319bafa943eea3eeb9 /src/Propellor/Property
parentfd4cd21388dc40d28af500902655976de137afd6 (diff)
Libvirt.installed: install libvirt-daemon-system
Several things recommend libvirt-daemon, but not for whatever reason libvirt-daemon-system. This means the libvirt-daemon is not started, which can cause virt-install to fail. Installing libvirt-daemon explicitly is probably overkill, but avoids problems in case the dependencies of libvirt-daemon-system change.
Diffstat (limited to 'src/Propellor/Property')
-rw-r--r--src/Propellor/Property/Libvirt.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Libvirt.hs b/src/Propellor/Property/Libvirt.hs
index 4dad5f39..71f59d65 100644
--- a/src/Propellor/Property/Libvirt.hs
+++ b/src/Propellor/Property/Libvirt.hs
@@ -34,7 +34,7 @@ data DiskImageType = Raw -- TODO: | QCow2
-- | Install basic libvirt components
installed :: Property DebianLike
-installed = Apt.installed ["libvirt-clients", "virtinst"]
+installed = Apt.installed ["libvirt-clients", "virtinst", "libvirt-daemon", "libvirt-daemon-system"]
-- | Ensure that the default libvirt network is set to autostart, and start it.
--