summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rw-r--r--src/Propellor/Property/Libvirt.hs2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index d681637d..c263fc96 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+propellor (5.8.1) UNRELEASED; urgency=medium
+
+ * Libvirt.installed: install libvirt-daemon-system
+ Thanks, David Bremner
+
+ -- Joey Hess <id@joeyh.name> Sat, 15 Jun 2019 12:32:37 -0400
+
propellor (5.8.0) unstable; urgency=medium
* Fix bug in File.containsShellSetting that replaced whole shell conffile
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.
--