Bug 497352
Summary: | Tried to use undefined partition pv.01 in Volume Group specification. | ||||||
---|---|---|---|---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | James Laska <jlaska> | ||||
Component: | anaconda | Assignee: | Radek Vykydal <rvykydal> | ||||
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
Severity: | medium | Docs Contact: | |||||
Priority: | low | ||||||
Version: | rawhide | CC: | anaconda-maint-list, jturner, pjones, rmaximo, rvykydal, vanmeeuwen+fedora | ||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2009-04-27 11:33:58 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Attachments: |
|
Description
James Laska
2009-04-23 14:37:47 UTC
From the attached anaconda-logs.tgz, the kickstart file looks like: #version=F10 # Firewall configuration firewall --disabled # Root password rootpw --iscrypted $1$xafj7qlW$6swjxMwu0po47drJVRcIZ/ # System keyboard keyboard us # System language lang en_US # Installation logging level logging --level=info # Use network installation url --url=http://download.fedora.devel.redhat.com/pub/fedora/linux/development/x86_64/os # Reboot after installation reboot # System timezone timezone --isUtc America/New_York # System bootloader configuration bootloader --location=mbr # Partition clearing information clearpart --all --initlabel # Disk partitioning information part /boot --asprimary --fstype="ext3" --size=200 --label=BOOT part swap --fstype="swap" --recommended --label=SWAP part raid.01 --grow --size=2048 part raid.02 --grow --size=2048 part pv.02 --size=2048 raid pv.01 --device=0 --fstype="ext3" --level=RAID0 raid.01 raid.02 volgroup LVMONRAID --pesize=32768 pv.01 pv.02 logvol / --fstype="ext3" --grow --size=2048 --name=root --vgname=LVMONRAID I reproduced the bug and prepared a patch which works for me. Can you test if http://fedorapeople.org/~rvykydal/updates.497352.img fixes it for you too? (Updates is against .47 version) Thanks Radek, the updates.img provided resolves the issue. The reproducer was: 1) Perform an autopart kickstart install that uses clearpart --all --initlabel zerombr %pre to dd the first 512 of drive 2) Perform lvm_on_raid kickstart install using kickstart provided in comment#1 This should be fixed in version 11.5.0.49-1 of anaconda. |