diff --git a/ironic/drivers/fake.py b/ironic/drivers/fake.py index 124e383545..a25e6c5c38 100644 --- a/ironic/drivers/fake.py +++ b/ironic/drivers/fake.py @@ -219,8 +219,6 @@ class FakeDracDriver(base.BaseDriver): class FakeSNMPDriver(base.BaseDriver): """Fake SNMP driver.""" - supported = False - def __init__(self): if not importutils.try_import('pysnmp'): raise exception.DriverLoadError( diff --git a/ironic/drivers/pxe.py b/ironic/drivers/pxe.py index 78d52c403a..db855e3ed6 100644 --- a/ironic/drivers/pxe.py +++ b/ironic/drivers/pxe.py @@ -234,8 +234,6 @@ class PXEAndSNMPDriver(base.BaseDriver): class is merely the glue between them. """ - supported = False - def __init__(self): # Driver has a runtime dependency on PySNMP, abort load if it is absent if not importutils.try_import('pysnmp'): diff --git a/releasenotes/notes/pxe-snmp-driver-supported-9c559c6182c6ec4b.yaml b/releasenotes/notes/pxe-snmp-driver-supported-9c559c6182c6ec4b.yaml new file mode 100644 index 0000000000..451ba1931c --- /dev/null +++ b/releasenotes/notes/pxe-snmp-driver-supported-9c559c6182c6ec4b.yaml @@ -0,0 +1,4 @@ +--- +features: + - The pxe_snmp and fake_snmp are now supported and + tested.