From 533a0cb30920fa01f9acbe6956a8a8bb8609d8a5 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Wed, 15 Apr 2020 16:24:02 -0700 Subject: [PATCH] Change --make-pxe-live --no-virt to use a fsimage Instead of a partitioned disk image. This will allow a single pass of lmc to be used to create an ostree live PXE image. Resolves: rhbz#1802591 --- src/pylorax/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/installer.py b/src/pylorax/installer.py index 486201a1..22189f44 100644 --- a/src/pylorax/installer.py +++ b/src/pylorax/installer.py @@ -254,7 +254,7 @@ def novirt_install(opts, disk_img, disk_size, repo_url, cancel_func=None): if opts.armplatform: args += ["--armplatform", opts.armplatform] - if opts.make_iso or opts.make_fsimage: + if opts.make_iso or opts.make_fsimage or opts.make_pxe_live: # Make a blank fs image args += ["--dirinstall"]