summaryrefslogtreecommitdiff
path: root/ironic/drivers/drac.py
diff options
context:
space:
mode:
authorDmitry Tantsur <divius.inside@gmail.com>2017-11-14 13:04:57 +0100
committerDmitry Tantsur <divius.inside@gmail.com>2017-11-14 13:04:57 +0100
commit4432fa9950f8300604528ae9b519bc78db37a768 (patch)
tree795432c31d3f8a17e1f8a53e765d8dad0336660f /ironic/drivers/drac.py
parent04015a0b51852884b1d86921ec5ec40f8ec99e32 (diff)
downloadironic-4432fa9950f8300604528ae9b519bc78db37a768.tar.gz
Add no-vendor interface to the idrac hardware types
Vendor interfaces must not be mandatory. Missing no-vendor implementation means that we require operators to enable the idrac vendor interface when the idrac hardware type is enabled. Change-Id: I6768a37bc268e367eaf93b12660a80d31eeca0c0 Closes-Bug: #1732166
Diffstat (limited to 'ironic/drivers/drac.py')
-rw-r--r--ironic/drivers/drac.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/drivers/drac.py b/ironic/drivers/drac.py
index 12262d489..7fedaee27 100644
--- a/ironic/drivers/drac.py
+++ b/ironic/drivers/drac.py
@@ -65,7 +65,7 @@ class IDRACHardware(generic.GenericHardware):
@property
def supported_vendor_interfaces(self):
"""List of supported vendor interfaces."""
- return [vendor_passthru.DracVendorPassthru]
+ return [vendor_passthru.DracVendorPassthru, noop.NoVendor]
class PXEDracDriver(base.BaseDriver):