Description of problem: During provisioning of a node that contains multiple nics, the installer prompts for the nic to use for installation. Version-Release number of selected component (if applicable): How reproducible: Everytime Steps to Reproduce: 1. Configure Foreman to provision. 2. Add a host and select build. 3. Boot host. Actual results: Prompted for installation nic Additional info: The OpenStack PXE Template appends ksdevice=bootif and kssendmac to the initrd line. append initrd=<%= @initrd %> ks=<%= foreman_url("provision")%> ksdevice=bootif network kssendmac But it needs "ipappend 2" passed in the template as well. Adding the ipappend 2 line to the template as follows fixes the issue and causes the installation to use the same nic as it was PXE booted on. default linux label linux kernel <%= @kernel %> append initrd=<%= @initrd %> ks=<%= foreman_url("provision")%> ksdevice=bootif network kssendmac ipappend 2 The "ipappend 2" should be part of the default templates when created.
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. http://rhn.redhat.com/errata/RHEA-2013-1859.html