mirror of https://github.com/ansible/ansible.git
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.
17 lines
616 B
YAML
17 lines
616 B
YAML
6 years ago
|
- 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"
|