Bug 492586

Summary: cmdline mode prompts during loader for NIC selection
Product: [Fedora] Fedora Reporter: James Laska <jlaska>
Component: anacondaAssignee: David Cantrell <dcantrell>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: low    
Version: rawhideCC: jturner, pjones, rmaximo, tcallawa, 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-05-06 21:28:42 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:
Bug Depends On:    
Bug Blocks: 495965    
Attachments:
Description Flags
Screenshot none

Description James Laska 2009-03-27 15:14:24 UTC
Created attachment 337023 [details]
Screenshot

Description of problem:

Doing a cmdline mode kickstart install stops and prompts for the NIC to use in loader.


Version-Release number of selected component (if applicable):

anaconda-11.5.0.38


Steps to Reproduce:
1. Initiate cmdline mode kickstart install on a system with *multiple* NICs
  
Actual results:

Loader prompts for which NIC to use.

Expected results:

cmdline mode should never prompt, we should emit a failure message and the user must supply the require NIC information via cmdline or kickstart.

Additional info:

See screenshot

Comment 1 Chris Lumens 2009-03-27 17:19:16 UTC
David - it looks like all we really need here is something like:

if (FL_CMDLINE(flags)) {
    fprinft(stderr, "No way to determine which NIC to use, and cannot ask in cmdline mode.  Halting.");
    exit(1);
}

in net.c:chooseNetworkInterface, right before the startNewt().  Does that sound about right?

Comment 2 David Cantrell 2009-03-27 20:47:13 UTC
(In reply to comment #1)
> David - it looks like all we really need here is something like:
> 
> if (FL_CMDLINE(flags)) {
>     fprinft(stderr, "No way to determine which NIC to use, and cannot ask in
> cmdline mode.  Halting.");
>     exit(1);
> }
> 
> in net.c:chooseNetworkInterface, right before the startNewt().  Does that sound
> about right?  

Yeah, that's exactly what we need.  Will be in anaconda-11.5.0.39-1 and later.