mirror of https://github.com/ceph/ceph-ansible.git
19 lines
403 B
YAML
19 lines
403 B
YAML
---
|
|
- name: install pip on debian
|
|
apt:
|
|
name: pip
|
|
state: present
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
- name: install pip on redhat
|
|
yum:
|
|
name: python-pip
|
|
state: present
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
|
|
- name: install docker-py
|
|
pip:
|
|
name: docker-py
|
|
version: 1.1.0
|