Remove deprecation of snmp drivers

Now that there is a gate running with virtual pdu we can officially
keep it an support it

Change-Id: Ie6accaa2a29007fa2e0c97329e37efd5f907fc7b
This commit is contained in:
Martin Roy 2016-12-01 16:22:06 -05:00
parent b15a8cf90a
commit e806cf7a88
3 changed files with 4 additions and 4 deletions

View File

@ -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(

View File

@ -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'):

View File

@ -0,0 +1,4 @@
---
features:
- The pxe_snmp and fake_snmp are now supported and
tested.