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.
ansible/test/integration/targets/gather_facts-errors/library/fail2.py

13 lines
233 B
Python

from __future__ import annotations
from ansible.module_utils.basic import AnsibleModule
def main() -> None:
module = AnsibleModule({})
module.fail_json("the fail2 module went bang")
if __name__ == '__main__':
main()