summaryrefslogtreecommitdiffstats
path: root/test/local-content/test-roles-failed/roles/role1/library/test_module_1_failed.py
blob: d9012a7c33fbf8f3d438bfe3e136ba9af656196d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 1!")


if __name__ == "__main__":
    main()