Increase boot.iso rootfs to 3GiB

PPC64 runs out of space when installing into a 2GiB rootfs. Other arches
may also be getting close to running out of space.

Resolves: rhbz#1661169
This commit is contained in:
Brian C. Lane 2018-12-20 07:51:24 -08:00
parent 4f33181f2f
commit 47eecdfc85
1 changed files with 2 additions and 2 deletions

View File

@ -103,8 +103,8 @@ def lorax_parser(dracut_default=""):
metavar="[repo]", help="Names of repos to enable")
optional.add_argument("--disablerepo", action="append", default=[], dest="disablerepos",
metavar="[repo]", help="Names of repos to disable")
optional.add_argument("--rootfs-size", type=int, default=2,
help="Size of root filesystem in GiB. Defaults to 2.")
optional.add_argument("--rootfs-size", type=int, default=3,
help="Size of root filesystem in GiB. Defaults to 3.")
optional.add_argument("--noverifyssl", action="store_true", default=False,
help="Do not verify SSL certificates")