summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Libvirt.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Propellor/Property/Libvirt.hs')
-rw-r--r--src/Propellor/Property/Libvirt.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Property/Libvirt.hs b/src/Propellor/Property/Libvirt.hs
index 5fd083e4..000f56c4 100644
--- a/src/Propellor/Property/Libvirt.hs
+++ b/src/Propellor/Property/Libvirt.hs
@@ -127,8 +127,8 @@ kvmDefined imageType mem cpus auto h =
conf = "/etc/libvirt/qemu" </> hostName h <.> "xml"
confTmp = conf <.> "tmp"
- osTypeArg = maybe "" ("--os-type=" ++) $ osType h
- osVariantArg = maybe "" ("--os-variant=" ++) $ osVariant h
+ osTypeArg = maybe "" (" --os-type=" ++) $ osType h
+ osVariantArg = maybe "" (" --os-variant=" ++) $ osVariant h
autoStartArg = case auto of
AutoStart -> " --autostart"
NoAutoStart -> ""