Anonymous | Login | 2024-11-21 01:32 MST |
Main | My View | View Issues | Change Log | Roadmap | Repositories |
View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | ||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | ||||
0001379 | ClearOS | anaconda - Installer | public | 2013-10-16 09:08 | 2015-11-23 12:34 | ||||
Reporter | user2 | ||||||||
Assigned To | slords | ||||||||
Priority | normal | Severity | major | Reproducibility | have not tried | ||||
Status | closed | Resolution | fixed | ||||||
Platform | OS | OS Version | |||||||
Product Version | |||||||||
Target Version | 6.6.0 | Fixed in Version | 6.6.0 | ||||||
Summary | 0001379: Install fails on certain Dell equipment | ||||||||
Description | For some Dell equipment, the install fails with: KeyError: 'eth0' install exited abnormally The workaround is to set the biosdevname kernel parameter. Is this workaround still required? | ||||||||
Tags | No tags attached. | ||||||||
Attached Files | |||||||||
Relationships | |||||||||||
|
Notes | |
(0001045) user2 2013-10-16 09:14 |
The installclasses/server.py in the product.img file requires the following one-line change: < if anaconda.id.network.getDevice("eth0"): --- > if "eth0" in devices and anaconda.id.network.getDevice("eth0"): Let me know if a patch file is better. |