summaryrefslogtreecommitdiffstats
path: root/test/local-content/collections/ansible_collections/testns/test_collection/plugins/modules/test_module_2.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/local-content/collections/ansible_collections/testns/test_collection/plugins/modules/test_module_2.py')
-rwxr-xr-xtest/local-content/collections/ansible_collections/testns/test_collection/plugins/modules/test_module_2.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/local-content/collections/ansible_collections/testns/test_collection/plugins/modules/test_module_2.py b/test/local-content/collections/ansible_collections/testns/test_collection/plugins/modules/test_module_2.py
new file mode 100755
index 0000000..a63d06d
--- /dev/null
+++ b/test/local-content/collections/ansible_collections/testns/test_collection/plugins/modules/test_module_2.py
@@ -0,0 +1,14 @@
+#!/usr/bin/python
+"""A module."""
+
+from ansible.module_utils.basic import AnsibleModule
+
+
+def main() -> None:
+ """Execute module."""
+ module = AnsibleModule({})
+ module.exit_json(msg="Hello 2!")
+
+
+if __name__ == "__main__":
+ main()