You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
984 B
Python
33 lines
984 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
|
# (c) 2016, Toshio Kuratomi <tkuratomi@ansible.com>
|
|
# (c) 2020, Steven Robertson <srtrumpetaggie@gmail.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
import sys
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
|
|
def main():
|
|
result = dict(changed=False)
|
|
|
|
module = AnsibleModule(argument_spec=dict(
|
|
facts=dict(type=dict, default={})
|
|
))
|
|
|
|
result['ansible_facts'] = module.params['facts']
|
|
# revert the Mitogen OSX tweak since discover_interpreter() doesn't return this info
|
|
if sys.platform == 'darwin' and sys.executable != '/usr/bin/python':
|
|
sys.executable = sys.executable[:-3]
|
|
result['running_python_interpreter'] = sys.executable
|
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |