2015-07-28 22:05:35 +08:00
|
|
|
---
|
|
|
|
- name: create osd bootstrap directory
|
2015-10-19 09:24:47 +08:00
|
|
|
file:
|
2015-10-20 23:05:34 +08:00
|
|
|
path: "{{ item }}"
|
2015-10-19 09:24:47 +08:00
|
|
|
state: directory
|
2015-10-20 23:05:34 +08:00
|
|
|
with_items:
|
|
|
|
- /etc/ceph/
|
|
|
|
- /var/lib/ceph/bootstrap-osd
|
2015-07-28 22:05:35 +08:00
|
|
|
|
|
|
|
# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
|
|
|
|
- name: install docker-py
|
2015-10-19 09:24:47 +08:00
|
|
|
pip:
|
|
|
|
name: docker-py
|
|
|
|
version: 1.1.0
|