We need 4GiB of RAM in virt-install, for F26, it seems

Running with 2GiB causes the Workstation image builds to fail.
This commit is contained in:
Adam Williamson 2017-07-19 15:18:54 -07:00
parent d1a2869cc0
commit f476e00bd6
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ class VirtInstallImage(object):
"--os-variant", shortid, "-x", xargs, "--initrd-inject",
"{0}/{1}.ks".format(SCRIPTDIR, self.name), "--location",
loctmp.format(str(self.release), self.variant, arch), "--name", "createhdds",
"--memory", "2048", "--noreboot", "--wait", "-1"]
"--memory", "4096", "--noreboot", "--wait", "-1"]
if textinst:
args.extend(("--graphics", "none", "--extra-args", "console=ttyS0"))
else: