automated changes
This commit is contained in:
@@ -0,0 +1,32 @@
|
|||||||
|
# This is a mocked Ansible module generated by ansible-lint
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
module: fake_namespace.fake_collection.fake_module
|
||||||
|
|
||||||
|
short_description: Mocked
|
||||||
|
version_added: "1.0.0"
|
||||||
|
description: Mocked
|
||||||
|
|
||||||
|
author:
|
||||||
|
- ansible-lint (@nobody)
|
||||||
|
'''
|
||||||
|
EXAMPLES = '''mocked'''
|
||||||
|
RETURN = '''mocked'''
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
result = dict(
|
||||||
|
changed=False,
|
||||||
|
original_message='',
|
||||||
|
message='')
|
||||||
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=dict(),
|
||||||
|
supports_check_mode=True,
|
||||||
|
)
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
# This is a mocked Ansible module generated by ansible-lint
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
module: fake_namespace.fake_collection.fake_module.fake_submodule
|
||||||
|
|
||||||
|
short_description: Mocked
|
||||||
|
version_added: "1.0.0"
|
||||||
|
description: Mocked
|
||||||
|
|
||||||
|
author:
|
||||||
|
- ansible-lint (@nobody)
|
||||||
|
'''
|
||||||
|
EXAMPLES = '''mocked'''
|
||||||
|
RETURN = '''mocked'''
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
result = dict(
|
||||||
|
changed=False,
|
||||||
|
original_message='',
|
||||||
|
message='')
|
||||||
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=dict(),
|
||||||
|
supports_check_mode=True,
|
||||||
|
)
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
32
.ansible/modules/zuul_return.py
Normal file
32
.ansible/modules/zuul_return.py
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
# This is a mocked Ansible module generated by ansible-lint
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
module: zuul_return
|
||||||
|
|
||||||
|
short_description: Mocked
|
||||||
|
version_added: "1.0.0"
|
||||||
|
description: Mocked
|
||||||
|
|
||||||
|
author:
|
||||||
|
- ansible-lint (@nobody)
|
||||||
|
'''
|
||||||
|
EXAMPLES = '''mocked'''
|
||||||
|
RETURN = '''mocked'''
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
result = dict(
|
||||||
|
changed=False,
|
||||||
|
original_message='',
|
||||||
|
message='')
|
||||||
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=dict(),
|
||||||
|
supports_check_mode=True,
|
||||||
|
)
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
Reference in New Issue
Block a user