From 594e762d63a88676f6da1643386cb8d86a8e6866 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 8 Jun 2018 11:44:09 -0700 Subject: [PATCH] Increase default ram used with lmc and virt to 2048 1024 is a bit small in some situations, double it. Resolves: rhbz#1538747 --- src/pylorax/cmdline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/cmdline.py b/src/pylorax/cmdline.py index 03461b44..e556fc0b 100644 --- a/src/pylorax/cmdline.py +++ b/src/pylorax/cmdline.py @@ -233,7 +233,7 @@ def lmc_parser(dracut_default=""): # Group of arguments to pass to qemu virt_group = parser.add_argument_group("qemu arguments") - virt_group.add_argument("--ram", metavar="MEMORY", type=int, default=1024, + virt_group.add_argument("--ram", metavar="MEMORY", type=int, default=2048, help="Memory to allocate for installer in megabytes.") virt_group.add_argument("--vcpus", type=int, default=None, help="Passed to qemu -smp command")