24 lines
445 B
Python
24 lines
445 B
Python
|
#!/usr/bin/python
|
||
|
from __future__ import absolute_import, division, print_function
|
||
|
__metaclass__ = type
|
||
|
|
||
|
|
||
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||
|
'status': ['stableinterface'],
|
||
|
'supported_by': 'core'}
|
||
|
|
||
|
|
||
|
from ansible.module_utils.basic import AnsibleModule
|
||
|
|
||
|
|
||
|
def main():
|
||
|
module = AnsibleModule(
|
||
|
argument_spec=dict(),
|
||
|
)
|
||
|
|
||
|
module.exit_json()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|