Bug #1119
closedTweak to default RHEL partition table
Description
The existing one is non-lvm which probably sets people up for trouble in the future. I changed mine to:
zerombr yes
clearpart --all --initlabel
part /boot --fstype ext3 --size=200 --asprimary
part swap --recommended
part pv.01 --size=1 --grow
volgroup VolGroup01 pv.01
logvol / --fstype ext4 --name=root --vgname=VolGroup01 --size=1 --grow
Maybe we could do something similar by default in foreman. They should get a 200M /boot, self-calculated swap and a single giant LVM logvol of /. It's enough to get them started without being too clever!
Updated by Ashley Penney over 13 years ago
Make that:
zerombr
clearpart --all --initlabel
part /boot --fstype ext3 --size=200 --asprimary
part swap --recommended
part pv.01 --size=1 --grow
volgroup VolGroup01 pv.01
logvol / --fstype ext4 --name=root --vgname=VolGroup01 --size=1 --grow
I just found out that arguments to zerombr are deprecated in RHEL6.
Updated by Benjamin Papillon over 11 years ago
- Status changed from New to Closed
- Target version set to 1.2.0
The default RedHat partition table has been changed for 1.2.
Feel free to reopen the ticket if it does not match your needs.