Albin Vass bee0c6ae2f ansible-lint: use matchplay instead of matchtask
For some reason matchtask doesn't match includes, matchplay does so use
that instead.

Change-Id: I040f7f3394503e92d06c05e8ff671a43b14baebc
2020-05-05 20:42:38 +02:00

21 lines
583 B
YAML

- name: Check if virtualenv is installed
shell: |
command -v virtualenv || exit 1
args:
executable: /bin/bash
register: virtualenv_preinstalled
failed_when: false
- name: Install virtualenv package
include: "{{ zj_distro_os }}"
with_first_found:
- "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yaml"
- "{{ ansible_distribution_release }}.yaml"
- "{{ ansible_distribution }}.yaml"
- "{{ ansible_os_family }}.yaml"
- "default.yaml"
loop_control:
loop_var: zj_distro_os
when:
- virtualenv_preinstalled.rc != 0