Make main() calls conditional - messaging (#3654)

This commit is contained in:
Fabio Alessandro Locati
2016-12-05 16:24:50 +00:00
committed by Matt Clay
parent 6f019c1066
commit cefb569797
8 changed files with 24 additions and 8 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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