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.
|
|
|
- hosts: localhost
|
|
|
|
tasks:
|
|
|
|
- name: Detect Paramiko
|
|
|
|
detect_paramiko:
|
|
|
|
register: detect_paramiko
|
|
|
|
- name: Persist Result
|
|
|
|
copy:
|
|
|
|
content: "{{ detect_paramiko }}"
|
|
|
|
dest: "{{ lookup('env', 'OUTPUT_DIR') }}/detect-paramiko.json"
|
|
|
|
- name: Install Paramiko
|
|
|
|
when: not detect_paramiko.found
|
|
|
|
include_tasks: "{{ item }}"
|
|
|
|
with_first_found:
|
|
|
|
- "install-{{ ansible_distribution }}-{{ ansible_distribution_version }}-python-{{ ansible_python.version.major }}.yml"
|
|
|
|
- "install-{{ ansible_distribution }}-{{ ansible_distribution_major_version }}-python-{{ ansible_python.version.major }}.yml"
|
|
|
|
- "install-{{ ansible_os_family }}-{{ ansible_distribution_major_version }}-python-{{ ansible_python.version.major }}.yml"
|
|
|
|
- "install-python-{{ ansible_python.version.major }}.yml"
|
|
|
|
- "install-fail.yml"
|