mirror of https://github.com/ceph/ceph-ansible.git
commit
d092c0c899
|
@ -7,6 +7,18 @@
|
|||
- /etc/ceph/
|
||||
- /var/lib/ceph/bootstrap-mds
|
||||
|
||||
- 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:
|
||||
|
|
|
@ -9,6 +9,18 @@
|
|||
- /var/lib/ceph/bootstrap-mds
|
||||
- /var/lib/ceph/bootstrap-rgw
|
||||
|
||||
- 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:
|
||||
|
|
|
@ -7,6 +7,18 @@
|
|||
- /etc/ceph/
|
||||
- /var/lib/ceph/bootstrap-osd
|
||||
|
||||
- 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:
|
||||
|
|
|
@ -1,4 +1,16 @@
|
|||
---
|
||||
- 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:
|
||||
|
|
|
@ -7,6 +7,18 @@
|
|||
- /etc/ceph/
|
||||
- /var/lib/ceph/bootstrap-rgw
|
||||
|
||||
- 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:
|
||||
|
|
Loading…
Reference in New Issue