7d1a981b61
* default collection support * playbooks run from inside a registered collection will set that collection as the first item in the search order (as will all non-collection roles) * this allows easy migration of runme.sh style playbook/role integration tests to collections without the playbooks/roles needing to know the name of their enclosing collection * ignore bogus sanity error * filed #61460 * fixed task unit test failure * don't append an empty collections list to the ds * ignore leftover local_action in mod_args ds action parsing * fix async_extra_data test to not require ssh and bogus locale * disable default collection test under Windows * ensure collection location FS code is always bytes * add changelog
15 lines
308 B
Python
15 lines
308 B
Python
#!/usr/bin/python
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import json
|
|
|
|
|
|
def main():
|
|
print("junk_before_module_output")
|
|
print(json.dumps(dict(changed=False, source='user')))
|
|
print("junk_after_module_output")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|