From 3d718f3074b3a8ad1e32afff04a029577ed3246a Mon Sep 17 00:00:00 2001 From: Arif Ali Date: Mon, 20 Dec 2021 00:22:13 +0000 Subject: [PATCH] fix virt-install command param for memory --- manage-vm-nodes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage-vm-nodes.sh b/manage-vm-nodes.sh index a9fb5f3..c08b0be 100755 --- a/manage-vm-nodes.sh +++ b/manage-vm-nodes.sh @@ -422,7 +422,7 @@ build_vms() { --video qxl,vram=256 \ --channel spicevmc \ --name "$virt_node" \ - --ram "memory=$(( $ram * 6 / 4 )),currentMemory=$ram" \ + --memory "memory=$(( $ram * 6 / 4 )),currentMemory=$ram" \ --vcpus "$vcpus" \ --console pty,target_type=serial \ --graphics spice,clipboard_copypaste=no,mouse_mode=client,filetransfer_enable=off \