summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Libvirt.hs
diff options
context:
space:
mode:
authorSean Whitton2018-11-05 19:00:43 -0700
committerSean Whitton2018-11-05 19:00:43 -0700
commitcac1722a10c3e58c1938c0181a501e84c97875f1 (patch)
treeb060b31edd737a000100a96bf7809235b659e404 /src/Propellor/Property/Libvirt.hs
parent9a4d47d88f1051b23d30cc3cad8aa13a196dbfac (diff)
Libvirt: fix a type
Diffstat (limited to 'src/Propellor/Property/Libvirt.hs')
-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 abec2e99..c0cf0bb7 100644
--- a/src/Propellor/Property/Libvirt.hs
+++ b/src/Propellor/Property/Libvirt.hs
@@ -33,7 +33,7 @@ installed = Apt.installed ["libvirt-clients", "virtinst"]
-- | Ensure that the default libvirt network is set to autostart.
--
-- On Debian, it is not started by default after installation of libvirt.
-defaultNetworkAutostarted :: Property UnixLike
+defaultNetworkAutostarted :: Property DebianLike
defaultNetworkAutostarted = check (not <$> doesFileExist autostartFile)
(cmdProperty "virsh" ["net-autostart", "default"])
`requires` installed