Skip to content
Snippets Groups Projects
Commit ea07393c authored by nimrod's avatar nimrod
Browse files

Init facts ansible module, first commit (just placeholders).

parent c8509e6e
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python
DOCUMENTATION = '''
'''
EXAMPLES = '''
'''
def main():
module = AnsibleModule(argument_spec={})
result = {'changed': False, 'ansible_facts': {}}
module.exit_json(**result)
from ansible.module_utils.basic import AnsibleModule
main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment