ansible-role-zuul/tasks/install/pip.yaml
Paul Belanger 7284ca30ac Add tox.ini and ansible-lint cleanup
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2015-11-20 17:00:24 -05:00

12 lines
221 B
YAML

---
- name: Install zuul using pip.
pip:
name: zuul
when: zuul_pip_version is none
- name: Install zuul using pip.
pip:
name: zuul
version: "{{ zuul_pip_version }}"
when: zuul_pip_version is not none