Browse code

XenAPI: Default JEOS VM to only use 1GB RAM

While Devstack needs 4GB RAM (or more!) the JEOS
used as the base for the Devstack VM for XenServer
needs much less. Allowing the initial install to
use 1GB means we have lower requirements overall

Change-Id: Iecaeeb4db0dffcc43c5532b5d57cb041d47047a6

Bob Ball authored on 2015/03/07 06:11:55
Showing 1 changed files
... ...
@@ -227,7 +227,7 @@ if [ -z "$templateuuid" ]; then
227 227
         -n "$UBUNTU_INST_BRIDGE_OR_NET_NAME" \
228 228
         -l "$GUEST_NAME"
229 229
 
230
-    set_vm_memory "$GUEST_NAME" "$OSDOMU_MEM_MB"
230
+    set_vm_memory "$GUEST_NAME" "1024"
231 231
 
232 232
     xe vm-start vm="$GUEST_NAME"
233 233