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.
28 lines
643 B
Python
28 lines
643 B
Python
7 years ago
|
#!/usr/bin/python
|
||
|
# I am an Ansible new-style Python module. I should receive an encoding string.
|
||
|
|
||
|
import json
|
||
|
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)
|
||
|
|
||
|
# Also must slurp in our own source code, to verify the encoding string was
|
||
|
# added.
|
||
|
with open(sys.argv[0]) as fp:
|
||
|
me = fp.read()
|
||
|
|
||
|
input_json = sys.stdin.read()
|
||
|
|
||
|
print "{"
|
||
|
print " \"changed\": false,"
|
||
|
print " \"msg\": \"Here is my input\","
|
||
|
print " \"source\": [%s]," % (json.dumps(me),)
|
||
|
print " \"input\": [%s]" % (input_json,)
|
||
|
print "}"
|