mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
493 B
Python
36 lines
493 B
Python
5 years ago
|
#!/usr/bin/python
|
||
|
from __future__ import absolute_import, division, print_function
|
||
|
__metaclass__ = type
|
||
|
|
||
|
|
||
|
DOCUMENTATION = '''
|
||
|
---
|
||
|
module: test_docs_no_metadata
|
||
|
short_description: Test module
|
||
|
description:
|
||
|
- Test module
|
||
|
author:
|
||
|
- Ansible Core Team
|
||
|
'''
|
||
|
|
||
|
EXAMPLES = '''
|
||
|
'''
|
||
|
|
||
|
RETURN = '''
|
||
|
'''
|
||
|
|
||
|
|
||
|
from ansible.module_utils.basic import AnsibleModule
|
||
|
|
||
|
|
||
|
def main():
|
||
|
module = AnsibleModule(
|
||
|
argument_spec=dict(),
|
||
|
)
|
||
|
|
||
|
module.exit_json()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|