From edd34c360e874c744c31f9aac05327d309ce7be2 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 5 May 2015 15:06:05 -0600 Subject: [PATCH] Use a small root partition instead of LVM Signed-off-by: Zack Cerza --- roles/cobbler/templates/kickstarts/cephlab_rhel.ks | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/cobbler/templates/kickstarts/cephlab_rhel.ks b/roles/cobbler/templates/kickstarts/cephlab_rhel.ks index 13cc470..cb95d77 100644 --- a/roles/cobbler/templates/kickstarts/cephlab_rhel.ks +++ b/roles/cobbler/templates/kickstarts/cephlab_rhel.ks @@ -7,7 +7,7 @@ # System authorization information auth --useshadow --enablemd5 # System bootloader configuration -bootloader --location=mbr +bootloader --location=mbr --boot-drive=sda # Partition clearing information clearpart --all --initlabel # Use text mode install @@ -41,8 +41,8 @@ timezone America/New_York install # Clear the Master Boot Record zerombr -# Allow anaconda to partition the system as needed -autopart +# Use a small root partition on one disk +part / --fstype="ext4" --ondisk=sda --size=20000 %pre $SNIPPET('log_ks_pre') -- 2.39.5