16 lines
616 B
YAML
16 lines
616 B
YAML
- 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_major_version }}-python-{{ ansible_python.version.major }}.yml"
|
|
- "install-python-{{ ansible_python.version.major }}.yml"
|
|
- "install-fail.yml"
|