From f116ee8f055654a6df1a83506d512b78562bbc40 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 8 Jun 2018 11:59:21 -0700 Subject: [PATCH] Add reqpart to example kickstart files This will make sure that platform specific partitions are created when making partitioned disk images. Resolves: rhbz#1545289 --- docs/rhel7-livemedia.ks | 1 + docs/rhel7-minimal.ks | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/rhel7-livemedia.ks b/docs/rhel7-livemedia.ks index ed81af07..cb1fbbe5 100644 --- a/docs/rhel7-livemedia.ks +++ b/docs/rhel7-livemedia.ks @@ -35,6 +35,7 @@ zerombr # Partition clearing information clearpart --all # Disk partitioning information +reqpart part biosboot --size=1 part / --fstype="ext4" --size=5000 part swap --size=1000 diff --git a/docs/rhel7-minimal.ks b/docs/rhel7-minimal.ks index 43ad6e95..a0c56061 100644 --- a/docs/rhel7-minimal.ks +++ b/docs/rhel7-minimal.ks @@ -32,6 +32,7 @@ zerombr # Partition clearing information clearpart --all # Disk partitioning information +reqpart part / --fstype="ext4" --size=4000 part swap --size=1000