#298 Customizing LiveCD Throws a Traceback
Closed: Fixed Opened by jsteffan.

Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/revisor/lm_network.py", line 472, in button_forward_clicked
self.store_options()
File "/usr/lib/python2.5/site-packages/revisor/lm_network.py", line 398, in store_options
self.kshandler.network.add(nd)
AttributeError: LMNetwork instance has no attribute 'kshandler'


Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/revisor/lm_network.py", line 472, in button_forward_clicked
self.store_options()
File "/usr/lib/python2.5/site-packages/revisor/lm_network.py", line 398, in store_options
self.cfg.ksobj.network.add(nd)
AttributeError: RevisorKickstart instance has no attribute 'network'

Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/revisor/lm_network.py", line 472, in button_forward_clicked
self.store_options()
File "/usr/lib/python2.5/site-packages/revisor/lm_network.py", line 398, in store_options
self.cfg.ksobj.network.add(nd)
AttributeError: RevisorKickstart instance has no attribute 'network'

you need to use the interface of self.cfg.ksobj and use a function that does the "network.add()" in either EL5 pykickstart fashion or F7+ pykickstart fashion, just like _set() does

you need to use the interface of self.cfg.ksobj and use a function that does the "network.add()" in either EL5 pykickstart fashion or F7+ pykickstart fashion, just like _set() does

how about you modify to have revisor/kickstart.py:121:_NetworkData() to set (global) self.ks_net_data instead of a just a temporary (local) ks_net_data variable and call self.cfg.ksobj.ks_net_data.add(nd) ??

how about you modify to have revisor/kickstart.py:121:_NetworkData() to set (global) self.ks_net_data instead of a just a temporary (local) ks_net_data variable and call self.cfg.ksobj.ks_net_data.add(nd) ??

Fixed for at least F7, not sure about EL5

Fixed for at least F7, not sure about EL5

Metadata Update from @jsteffan:
- Issue set to the milestone: 2.0.5 (EL-5)

Metadata