Make main() calls conditional - cloud (#3657)

This commit is contained in:
Fabio Alessandro Locati
2016-12-05 16:20:51 +00:00
committed by Matt Clay
parent 11e3ec26ea
commit afa6fa9a89
21 changed files with 47 additions and 21 deletions

View File

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

View File

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

View File

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

View File

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