Modify ↓
Ticket #482 (closed defect: fixed)
YUMng driver does not work
Reported by: | [email protected]… | Owned by: | desai |
---|---|---|---|
Priority: | major | Milestone: | Bcfg2 0.9.5 Release |
Component: | bcfg2-client | Version: | 0.9.x |
Keywords: | YUMng | Cc: |
Description
The YUMng driver is broken. Since it does not ever set self.name it thinks its own name is RPMng. It also lists RPMng as a conflict.
In Frame.py
for tool in self.tools[:]:
print tool.name for conflict in getattr(tool, 'conflicts', []):
[self.tools.remove(item) for item in self.tools \
if item.name == conflict]
That loop makes YUMng remove itself. Since conflict = 'RPMng' and item.name == RPMng for YUMng.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
This works for me in 0.9.5pre4 (on an FC6 system). I am pretty sure that this problem is fixed early in 0.9.5pre. Can you test pre4 and verify that it fixes the problem for you as well?