Adds the __main__ conditional check (#2098)

As is done in other ansible modules, this adds the __main__ check
to the module so that the module code itself can be used as a library.
For instance, when testing the code.
reviewable/pr18780/r1
Tim Rupp 9 years ago committed by Brian Coca
parent e4a4259bc2
commit 86f08bfcda

@ -1687,4 +1687,3 @@ from ansible.module_utils.f5 import *
if __name__ == '__main__':
main()

@ -445,5 +445,6 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.f5 import *
main()
if __name__ == '__main__':
main()

@ -469,5 +469,6 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.f5 import *
main()
if __name__ == '__main__':
main()

@ -379,5 +379,6 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.f5 import *
main()
if __name__ == '__main__':
main()

@ -521,4 +521,6 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.f5 import *
main()
if __name__ == '__main__':
main()

@ -438,4 +438,6 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.f5 import *
main()
if __name__ == '__main__':
main()

@ -469,4 +469,3 @@ from ansible.module_utils.f5 import *
if __name__ == '__main__':
main()

Loading…
Cancel
Save