Relax suds module requirement
This commit is contained in:
parent
3b38077246
commit
6fa11d1d53
1 changed files with 2 additions and 2 deletions
4
net_infrastructure/bigip_facts
Normal file → Executable file
4
net_infrastructure/bigip_facts
Normal file → Executable file
|
@ -105,6 +105,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import bigsuds
|
import bigsuds
|
||||||
|
from suds import MethodNotFound
|
||||||
except ImportError:
|
except ImportError:
|
||||||
bigsuds_found = False
|
bigsuds_found = False
|
||||||
else:
|
else:
|
||||||
|
@ -113,7 +114,6 @@ else:
|
||||||
import fnmatch
|
import fnmatch
|
||||||
import traceback
|
import traceback
|
||||||
import re
|
import re
|
||||||
from suds import MethodNotFound
|
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
# bigip_facts module specific support methods.
|
# bigip_facts module specific support methods.
|
||||||
|
@ -1580,7 +1580,7 @@ def main():
|
||||||
)
|
)
|
||||||
|
|
||||||
if not bigsuds_found:
|
if not bigsuds_found:
|
||||||
module.fail_json(msg="the python bigsuds module is required")
|
module.fail_json(msg="the python suds and bigsuds modules is required")
|
||||||
|
|
||||||
server = module.params['server']
|
server = module.params['server']
|
||||||
user = module.params['user']
|
user = module.params['user']
|
||||||
|
|
Loading…
Reference in a new issue