Merge "Call main() from a conditional"

This commit is contained in:
Jenkins 2016-06-06 13:02:06 +00:00 committed by Gerrit Code Review
commit b5fc21ca37
3 changed files with 6 additions and 3 deletions

View File

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

View File

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

View File

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