summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton2018-11-05 19:47:26 -0700
committerSean Whitton2018-11-05 19:47:26 -0700
commitc244c40ebdaedeb6d6640abf02f3d65eb87c98f1 (patch)
treee11641478b72463d6bab1bd8da238733ef615674
parent807a641bef32fea8fd015ead95cec2b33e9aa707 (diff)
add missing spaces to two of the arguments to virt-install
-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 -> ""