mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
76d9fe4ec6
* fixed validation-modules for plugins/modules/packaging/language/pip_package_info.py * fixed validation-modules for plugins/modules/packaging/language/maven_artifact.py * fixed validation-modules for plugins/modules/packaging/language/bundler.py * fixed validation-modules for plugins/modules/notification/pushbullet.py * fixed validation-modules for plugins/modules/monitoring/sensu/sensu_handler.py * fixed validation-modules for plugins/modules/monitoring/sensu/sensu_check.py * fixed validation-modules for plugins/modules/monitoring/sensu/sensu_client.py * fixed validation-modules for plugins/modules/monitoring/icinga2_host.py * fixed validation-modules for plugins/modules/monitoring/datadog/datadog_monitor.py * fixed validation-modules for plugins/modules/monitoring/datadog/datadog_event.py * fixed validation-modules for plugins/modules/clustering/znode.py * fixed validation-modules for plugins/modules/clustering/etcd3.py * fixed validation-modules for plugins/modules/clustering/consul/consul_session.py * fixed validation-modules for plugins/modules/clustering/consul/consul_kv.py * fixed validation-modules for plugins/modules/clustering/consul/consul.py * fixed validation-modules for plugins/modules/cloud/profitbricks/profitbricks.py * fixed validation-modules for plugins/modules/cloud/profitbricks/profitbricks_volume.py * fixed validation-modules for plugins/modules/cloud/packet/packet_sshkey.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_server.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_private_network.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_monitoring_policy.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_load_balancer.py * fixed validation-modules for plugins/modules/cloud/oneandone/oneandone_firewall_policy.py * fixed validation-modules for plugins/modules/cloud/webfaction/webfaction_app.py * fixed validation-modules for plugins/modules/cloud/webfaction/webfaction_db.py * fixed validation-modules for plugins/modules/cloud/webfaction/webfaction_domain.py * fixed validation-modules for plugins/modules/cloud/webfaction/webfaction_mailbox.py * fixed validation-modules for plugins/modules/cloud/webfaction/webfaction_site.py * fixed validation-modules for plugins/modules/remote_management/lxca/lxca_cmms.py * fixed validation-modules for plugins/modules/remote_management/lxca/lxca_nodes.py * missed one "elements" in sensu_handler * Tidy up batch of sanity checks ignore lines * missed lines in ignore-2.9.txt * fixed validation-modules for plugins/modules/clustering/consul/consul_acl.py * Update ignore-2.9.txt Removed consul_acl.py from ignore-2.9.txt * Apply suggestions from code review Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/notification/pushbullet.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/modules/cloud/oneandone/oneandone_monitoring_policy.py Co-authored-by: Felix Fontein <felix@fontein.de> * added changelog fragment * Update plugins/modules/cloud/oneandone/oneandone_monitoring_policy.py * Update changelogs/fragments/1885-sanity-check-fixes-batch3.yml Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
152 lines
4.1 KiB
Python
152 lines
4.1 KiB
Python
#!/usr/bin/python
|
|
# (c) 2018, Ansible Project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# started out with AWX's scan_packages module
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
DOCUMENTATION = '''
|
|
module: pip_package_info
|
|
short_description: pip package information
|
|
description:
|
|
- Return information about installed pip packages
|
|
options:
|
|
clients:
|
|
description:
|
|
- A list of the pip executables that will be used to get the packages.
|
|
They can be supplied with the full path or just the executable name, i.e `pip3.7`.
|
|
default: ['pip']
|
|
required: False
|
|
type: list
|
|
elements: path
|
|
requirements:
|
|
- The requested pip executables must be installed on the target.
|
|
author:
|
|
- Matthew Jones (@matburt)
|
|
- Brian Coca (@bcoca)
|
|
- Adam Miller (@maxamillion)
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
- name: Just get the list from default pip
|
|
community.general.pip_package_info:
|
|
|
|
- name: Get the facts for default pip, pip2 and pip3.6
|
|
community.general.pip_package_info:
|
|
clients: ['pip', 'pip2', 'pip3.6']
|
|
|
|
- name: Get from specific paths (virtualenvs?)
|
|
community.general.pip_package_info:
|
|
clients: '/home/me/projec42/python/pip3.5'
|
|
'''
|
|
|
|
RETURN = '''
|
|
packages:
|
|
description: a dictionary of installed package data
|
|
returned: always
|
|
type: dict
|
|
contains:
|
|
python:
|
|
description: A dictionary with each pip client which then contains a list of dicts with python package information
|
|
returned: always
|
|
type: dict
|
|
sample:
|
|
"packages": {
|
|
"pip": {
|
|
"Babel": [
|
|
{
|
|
"name": "Babel",
|
|
"source": "pip",
|
|
"version": "2.6.0"
|
|
}
|
|
],
|
|
"Flask": [
|
|
{
|
|
"name": "Flask",
|
|
"source": "pip",
|
|
"version": "1.0.2"
|
|
}
|
|
],
|
|
"Flask-SQLAlchemy": [
|
|
{
|
|
"name": "Flask-SQLAlchemy",
|
|
"source": "pip",
|
|
"version": "2.3.2"
|
|
}
|
|
],
|
|
"Jinja2": [
|
|
{
|
|
"name": "Jinja2",
|
|
"source": "pip",
|
|
"version": "2.10"
|
|
}
|
|
],
|
|
},
|
|
}
|
|
'''
|
|
import json
|
|
import os
|
|
|
|
from ansible.module_utils._text import to_text
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
from ansible.module_utils.facts.packages import CLIMgr
|
|
|
|
|
|
class PIP(CLIMgr):
|
|
|
|
def __init__(self, pip):
|
|
|
|
self.CLI = pip
|
|
|
|
def list_installed(self):
|
|
global module
|
|
rc, out, err = module.run_command([self._cli, 'list', '-l', '--format=json'])
|
|
if rc != 0:
|
|
raise Exception("Unable to list packages rc=%s : %s" % (rc, err))
|
|
return json.loads(out)
|
|
|
|
def get_package_details(self, package):
|
|
package['source'] = self.CLI
|
|
return package
|
|
|
|
|
|
def main():
|
|
|
|
# start work
|
|
global module
|
|
module = AnsibleModule(
|
|
argument_spec=dict(
|
|
clients=dict(type='list', elements='path', default=['pip']),
|
|
),
|
|
supports_check_mode=True)
|
|
packages = {}
|
|
results = {'packages': {}}
|
|
clients = module.params['clients']
|
|
|
|
found = 0
|
|
for pip in clients:
|
|
|
|
if not os.path.basename(pip).startswith('pip'):
|
|
module.warn('Skipping invalid pip client: %s' % (pip))
|
|
continue
|
|
try:
|
|
pip_mgr = PIP(pip)
|
|
if pip_mgr.is_available():
|
|
found += 1
|
|
packages[pip] = pip_mgr.get_packages()
|
|
except Exception as e:
|
|
module.warn('Failed to retrieve packages with %s: %s' % (pip, to_text(e)))
|
|
continue
|
|
|
|
if found == 0:
|
|
module.fail_json(msg='Unable to use any of the supplied pip clients: %s' % clients)
|
|
|
|
# return info
|
|
results['packages'] = packages
|
|
module.exit_json(**results)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|