maybe you can try clearpart before create partition table
On Tue, May 14, 2013 at 11:00 PM, <kickstart-list-request@xxxxxxxxxx> wrote:
Send Kickstart-list mailing list submissions to
kickstart-list@xxxxxxxxxx
To subscribe or unsubscribe via the World Wide Web, visit
https://www.redhat.com/mailman/listinfo/kickstart-list
or, via email, send a message with subject or body 'help' to
kickstart-list-request@xxxxxxxxxx
You can reach the person managing the list at
kickstart-list-owner@xxxxxxxxxx
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Kickstart-list digest..."
Today's Topics:
1. Initializing disk with kickstart and parted (Bernd Nies)
---------- Forwarded message ----------
From: Bernd Nies <bernd.nies@xxxxxxxxx>
To: kickstart-list@xxxxxxxxxx
Cc:
Date: Tue, 14 May 2013 15:38:25 +0200
Subject: Initializing disk with kickstart and parted
Hi,
We're using the following kickstart pre script to create partitions in the order we want on VMware ESX. By default the swap partition is put as the last partition which makes it difficult to resize the root partition on ESX server. But now kickstart always complains that drives must be initialized. Can't use the clearpart --initlabel in that case because this will destroy the partition table.
Any ideas how to do this with parted or tell kickstart to do the initlable with out deling partition table?
Thanks in advance.
Regards,
Bernd
%pre
PATH="/bin:/sbin:/usr/bin:/usr/sbin"
set $(list-harddrives)
let numd=$#/2
disk0=$1
case $(dmidecode -s system-product-name) in
VMware*)
# Overwrite Master Boot Record
dd if=/dev/zero of=/dev/${disk0} bs=512 count=1
# Partition must start at sector that is multiple of 8.
# 8 * 1 Sector (512 Bytes) = 4096 Bytes (Netapp Block Size)
parted -s /dev/${disk0} mklabel msdos
parted -s /dev/${disk0} mkpart primary ext4 2048s 1023999s
parted -s /dev/${disk0} mkpart primary ext4 1024000s 17801215s
parted -s /dev/${disk0} mkpart primary ext4 17801216s 100%
# Don't use LVM. It's not supported by gparted.
# Don't put swap as last partition. Makes resizing vmdk easier.
cat >/tmp/partitions.ks <<-==EOF==
bootloader --location=mbr
partition /boot --_onpart_=${disk0}1 --fstype=ext4
partition swap --_onpart_=${disk0}2 --fstype=swap
partition / --_onpart_=${disk0}3 --fstype=ext4
==EOF==
;;
*)
# Office Workstations and rest
cat >/tmp/partitions.ks <<-==EOF==
zerombr
ignoredisk --only-use=${disk0}
bootloader --location=mbr
clearpart --all --drives=${disk0} --initlabel
partition /boot/efi --_ondisk_=${disk0} --asprimary --fstype=vfat --size=200
partition /boot --_ondisk_=${disk0} --asprimary --fstype=ext4 --size=500
partition swap --_ondisk_=${disk0} --asprimary --fstype=swap --recommended
partition / --_ondisk_=${disk0} --asprimary --fstype=ext4 --size=4096 --grow
==EOF==
;;
esac
%end
_______________________________________________
Kickstart-list mailing list
Kickstart-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/kickstart-list
_______________________________________________ Kickstart-list mailing list Kickstart-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/kickstart-list