mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
Removes bigip_pool from the skip file (#32516)
This commit is contained in:
parent
ab71a9de14
commit
64871470e2
2 changed files with 9 additions and 2 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue