Replace incomplete "ilo" driver with pxe_ilo and fake_ilo

The "ilo" driver is not complete -- it only has a PowerInterface today.

This patch removes it from setup.cfg, deletes the drivers/ilo.py module,
and adds both PXEAndIloDriver and FakeIloDriver instead.

Change-Id: I431fd5155d0696a0a48ad8decf9f5317c5fcd7a2
This commit is contained in:
Devananda van der Veen 2014-08-11 11:53:59 -07:00
parent ba4647aed4
commit 28d3f3914f
1 changed files with 2 additions and 1 deletions

View File

@ -41,12 +41,13 @@ ironic.drivers =
fake_pxe = ironic.drivers.fake:FakePXEDriver
fake_seamicro = ironic.drivers.fake:FakeSeaMicroDriver
fake_iboot = ironic.drivers.fake:FakeIBootDriver
fake_ilo = ironic.drivers.fake:FakeIloDriver
pxe_ipmitool = ironic.drivers.pxe:PXEAndIPMIToolDriver
pxe_ipminative = ironic.drivers.pxe:PXEAndIPMINativeDriver
pxe_ssh = ironic.drivers.pxe:PXEAndSSHDriver
pxe_seamicro = ironic.drivers.pxe:PXEAndSeaMicroDriver
pxe_iboot = ironic.drivers.pxe:PXEAndIBootDriver
ilo = ironic.drivers.ilo:IloDriver
pxe_ilo = ironic.drivers.pxe:PXEAndIloDriver
[pbr]
autodoc_index_modules = True