mirror of https://github.com/ceph/ceph-ansible.git
15 lines
335 B
YAML
15 lines
335 B
YAML
---
|
|
- name: create osd bootstrap directory
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
with_items:
|
|
- /etc/ceph/
|
|
- /var/lib/ceph/bootstrap-osd
|
|
|
|
# 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
|