22 lines
457 B
Python
22 lines
457 B
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from ansible.module_utils.basic import AnsibleModule
|
||
|
|
||
|
|
||
|
def main():
|
||
|
module = AnsibleModule(
|
||
|
argument_spec=dict(),
|
||
|
)
|
||
|
result = {
|
||
|
'selinux_special_fs': module._selinux_special_fs,
|
||
|
'tmpdir': module._tmpdir,
|
||
|
'keep_remote_files': module._keep_remote_files,
|
||
|
'version': module.ansible_version,
|
||
|
}
|
||
|
module.exit_json(**result)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|