mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
* Python interpreter discovery * No longer blindly default to only `/usr/bin/python` * `ansible_python_interpreter` defaults to `auto_legacy`, which will discover the platform Python interpreter on some platforms (but still favor `/usr/bin/python` if present for backward compatibility). Use `auto` to always use the discovered interpreter, append `_silent` to either value to suppress warnings. * includes new doc utility method `get_versioned_doclink` to generate a major.minor versioned doclink against docs.ansible.com (or some other config-overridden URL) * docs revisions for python interpreter discovery (cherry picked from commit 5b53c0012ab7212304c28fdd24cb33fd8ff755c2) * verify output on some distros, cleanup
48 lines
1.2 KiB
Python
48 lines
1.2 KiB
Python
# Copyright: (c) 2018 Ansible Project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# FUTURE: this could be swapped out for our bundled version of distro to move more complete platform
|
|
# logic to the targets, so long as we maintain Py2.6 compat and don't need to do any kind of script assembly
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import json
|
|
import platform
|
|
import io
|
|
import os
|
|
|
|
|
|
def read_utf8_file(path, encoding='utf-8'):
|
|
if not os.access(path, os.R_OK):
|
|
return None
|
|
with io.open(path, 'r', encoding=encoding) as fd:
|
|
content = fd.read()
|
|
|
|
return content
|
|
|
|
|
|
def get_platform_info():
|
|
result = dict(platform_dist_result=[])
|
|
|
|
if hasattr(platform, 'dist'):
|
|
result['platform_dist_result'] = platform.dist()
|
|
|
|
osrelease_content = read_utf8_file('/etc/os-release')
|
|
# try to fall back to /usr/lib/os-release
|
|
if not osrelease_content:
|
|
osrelease_content = read_utf8_file('/usr/lib/os-release')
|
|
|
|
result['osrelease_content'] = osrelease_content
|
|
|
|
return result
|
|
|
|
|
|
def main():
|
|
info = get_platform_info()
|
|
|
|
print(json.dumps(info))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|