Created attachment 928407 [details] fd0 in /proc/partitions When deploying the first node on a node that has fd0 in /proc/partitions installation fails with "Specified nonexistent disk fd0 in partition command" The problem seems to be at /usr/share/foreman-installer/hooks/lib/provisioning_seeder.rb at the line containing: "sed -i "s/sda/$(cat /proc/partitions | awk '{ print $4 }' | grep -e "^.d.$" | sort | head -1)/" /tmp/diskpart.cfg" This happens with rhel-osp-installer-0.1.6-5.el6ost.noarch I'm reproducing it with a VMware Fusion VM being provisioned from another VM with the current Tech Preview Staypuft. I have tried modifying provisioning_seeder.rb and adding an additional filter with "grep -vw fd0" to look like: sed -i "s/sda/$(cat /proc/partitions | awk '{ print $4 }' | grep -e "^.d.$" | grep -vw fd0 | sort | head -1)/" /tmp/diskpart.cfg For some reason re-provisioning after the change doesn't seem to work. It seems it's cached or something else.
Verified with: rhel-osp-installer-0.5.7-1.el7ost.noarch. Kickstart RHEL default snippet contain: ======================================= sed -i "s/sda/$(cat /proc/partitions | awk '{ print $4 }' | grep -e "^.d.$" | grep -vw fd0 | sort | head -1)/" /tmp/diskpart.cfg %end
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://rhn.redhat.com/errata/RHSA-2015-0791.html