mirror of
https://github.com/zebrajr/ansible.git
synced 2025-12-06 12:19:53 +01:00
10 lines
207 B
Python
10 lines
207 B
Python
#!/usr/bin/python
|
|
|
|
from __future__ import annotations
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
module = AnsibleModule(argument_spec=dict())
|
|
|
|
module.exit_json(**{'tempdir': module._remote_tmp})
|