Fixed version_added and removed reference to traceback module
This commit is contained in:
parent
459f290da3
commit
176cf51b0a
1 changed files with 1 additions and 3 deletions
|
@ -24,7 +24,7 @@ module: bigip_node
|
||||||
short_description: "Manages F5 BIG-IP LTM nodes"
|
short_description: "Manages F5 BIG-IP LTM nodes"
|
||||||
description:
|
description:
|
||||||
- "Manages F5 BIG-IP LTM nodes via iControl SOAP API"
|
- "Manages F5 BIG-IP LTM nodes via iControl SOAP API"
|
||||||
version_added: "1.3"
|
version_added: "1.4"
|
||||||
author: Matt Hite
|
author: Matt Hite
|
||||||
notes:
|
notes:
|
||||||
- "Requires BIG-IP software version >= 11"
|
- "Requires BIG-IP software version >= 11"
|
||||||
|
@ -145,7 +145,6 @@ except ImportError:
|
||||||
bigsuds_found = False
|
bigsuds_found = False
|
||||||
else:
|
else:
|
||||||
bigsuds_found = True
|
bigsuds_found = True
|
||||||
import traceback
|
|
||||||
|
|
||||||
# ==========================
|
# ==========================
|
||||||
# bigip_node module specific
|
# bigip_node module specific
|
||||||
|
@ -285,7 +284,6 @@ def main():
|
||||||
result = {'changed': True}
|
result = {'changed': True}
|
||||||
|
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
traceback.print_exc(file=sys.stdout)
|
|
||||||
module.fail_json(msg="received exception: %s" % e)
|
module.fail_json(msg="received exception: %s" % e)
|
||||||
|
|
||||||
module.exit_json(**result)
|
module.exit_json(**result)
|
||||||
|
|
Loading…
Reference in a new issue