Make main() calls conditional - network (#3649)

This commit is contained in:
Fabio Alessandro Locati 2016-12-05 16:22:51 +00:00 committed by Matt Clay
commit 95be8b8276
15 changed files with 39 additions and 16 deletions

View file

@ -285,4 +285,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()