19 lines
322 B
Python
19 lines
322 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
from __future__ import absolute_import, division, print_function
|
||
|
|
||
|
__metaclass__ = type
|
||
|
|
||
|
import sys
|
||
|
|
||
|
from ansible.module_utils.basic import AnsibleModule
|
||
|
|
||
|
|
||
|
def main():
|
||
|
module = AnsibleModule(argument_spec={})
|
||
|
module.exit_json(**dict(found=sys.executable))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|