ClearFoundation Tracker - ClearOS
View Issue Details
0001379ClearOSanaconda - Installerpublic2013-10-16 09:082015-11-23 12:34
user2 
slords 
normalmajorhave not tried
closedfixed 
 
6.6.06.6.0 
0001379: Install fails on certain Dell equipment
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?
No tags attached.
related to 0000963closed user2 Install fails on certain Dell equipment (BoxGrinder) 
related to 0002044closed  Install fails when no network interfaces are detected 
Issue History
2013-10-16 09:08user2New Issue
2013-10-16 09:08user2Statusnew => assigned
2013-10-16 09:08user2Assigned To => slords
2013-10-16 09:08user2Issue generated from: 0000963
2013-10-16 09:08user2Relationship addedrelated to 0000963
2013-10-16 09:14user2Note Added: 0001045
2013-12-16 20:17user2Target Version6.5.0 => 6.6.0 Beta 1
2014-04-22 13:37user2Target Version6.6.0 Beta 1 => 6.6.0
2014-11-21 04:13user2Issue cloned: 0002044
2014-11-21 04:13user2Relationship addedrelated to 0002044
2014-11-21 04:18user2Statusassigned => resolved
2014-11-21 04:18user2Fixed in Version => 6.6.0
2014-11-21 04:18user2Resolutionopen => fixed
2015-01-19 08:43user2Target Version6.6.0 => 6.7.0 Beta 1
2015-01-19 08:45user2Fixed in Version6.6.0 => 6.7.0 Beta 1
2015-01-25 15:54user2Fixed in Version6.7.0 Beta 1 => 6.6.0
2015-01-25 15:54user2Target Version6.7.0 Beta 1 => 6.6.0
2015-11-23 12:34user2Statusresolved => closed

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.