bda541fa0d
* fix missing attribs with dirct module execution * also make remote tmp handling smarter update tests * set default if attrib does not exist * add simple test
7 lines
171 B
Python
7 lines
171 B
Python
#!/usr/bin/python
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
module = AnsibleModule(argument_spec=dict())
|
|
|
|
module.exit_json(**{'tempdir': module._remote_tmp})
|