Make main() calls conditional - system (#3652)

This commit is contained in:
Fabio Alessandro Locati 2016-12-05 16:24:19 +00:00 committed by Matt Clay
parent 45b31fa514
commit cbe3f4e5e1
24 changed files with 55 additions and 28 deletions

View file

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