Vendor Galaxy Roles and Collections
This commit is contained in:
parent
c1e1897cda
commit
2aed20393f
3553 changed files with 387444 additions and 2 deletions
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
# Copyright (c) Ansible Project
|
||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
dependencies:
|
||||
- setup_remote_constraints
|
||||
- setup_openssl # so cryptography is installed
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
# Copyright (c) Ansible Project
|
||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
- name: Install paramiko from system repository
|
||||
ansible.builtin.package:
|
||||
name: python-paramiko
|
||||
become: true
|
||||
when:
|
||||
- ansible_distribution == 'CentOS' and ansible_distribution_major_version|int <= 7
|
||||
|
||||
- name: Install paramiko
|
||||
ansible.builtin.pip:
|
||||
name: "paramiko{% if cryptography_version.stdout is version('2.5.0', '<') %}<2.5.0{% endif %}"
|
||||
extra_args: "-c {{ remote_constraints }}"
|
||||
become: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue