Removes bigip_pool from the skip file (#32516)

This commit is contained in:
Tim Rupp
2017-11-02 13:10:37 -07:00
committed by GitHub
parent ab71a9de14
commit 64871470e2
2 changed files with 9 additions and 2 deletions

View File

@@ -296,7 +296,12 @@ from ansible.module_utils.f5_utils import HAS_F5SDK
from ansible.module_utils.f5_utils import F5ModuleError
from ansible.module_utils.six import iteritems
from collections import defaultdict
from netaddr import IPAddress, AddrFormatError
try:
from netaddr import IPAddress, AddrFormatError
HAS_NETADDR = True
except ImportError:
HAS_NETADDR = False
try:
from ansible.module_utils.f5_utils import iControlUnexpectedHTTPError
@@ -904,6 +909,9 @@ def main():
if not HAS_F5SDK:
raise F5ModuleError("The python f5-sdk module is required")
if not HAS_NETADDR:
raise F5ModuleError("The python netaddr module is required")
spec = ArgumentSpec()
client = AnsibleF5Client(