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.
mitogen/tests/ansible/lib/modules/custom_python_new_style_mod...

30 lines
815 B
Python

#!/usr/bin/env python
# I am an Ansible new-style Python module. I should receive an encoding string.
import sys
# This is the magic marker Ansible looks for:
# from ansible.module_utils.
def usage():
sys.stderr.write('Usage: %s <input.json>\n' % (sys.argv[0],))
sys.exit(1)
input_json = sys.stdin.read()
print("{")
print(" \"changed\": false,")
# v2.5.1. apt.py started depending on this.
# https://github.com/dw/mitogen/issues/210
print(" \"__file__\": \"%s\"," % (__file__,))
# Python sets this during a regular import.
print(" \"__package__\": \"%s\"," % (__package__,))
print(" \"msg\": \"Here is my input\",")
print(" \"input\": [%s]" % (input_json,))
print("}")
# Ansible since 2.7.0/52449cc01a7 broke __file__ and *requires* the module
# process to exit itself. So needless.
sys.exit(0)