From 17070c08871113473f5123f192d0476f7883295a Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 13 Oct 2010 15:39:02 -0700 Subject: [PATCH] Make sure lvm shows up on the first disk (#642557) --- src/bin/pkgorder | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/bin/pkgorder b/src/bin/pkgorder index 28d349e0..0174fe59 100755 --- a/src/bin/pkgorder +++ b/src/bin/pkgorder @@ -184,8 +184,9 @@ if __name__ == "__main__": ds = PackageOrderer(arch=arch) ds.setup(fn=config, excludes=options.excludeList, root = testpath) - # hack, hack, hack... make sure iscsi ends up on disc1 (#208832) - addPackages(ds, ["kernel-*","dracut","mdadm"]) + # hack, hack, hack... make sure initrd stuff ends up on disc1 + # bugs #208832 #642557 + addPackages(ds, ["kernel-*","dracut","mdadm","lvm"]) # add the packages anaconda forces on us addPackages(ds, ["authconfig", "chkconfig", "dracut", "system-config-firewall-tui"])