mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-07 03:03:08 +00:00
* 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
8 lines
171 B
Python
8 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})
|