2015-07-28 23:15:19 +08:00
|
|
|
---
|
2015-10-21 08:12:43 +08:00
|
|
|
- name: check if a cluster is already running
|
|
|
|
shell: "docker ps | grep -sq 'ceph/daemon'"
|
|
|
|
register: ceph_health
|
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
|
|
|
|
|
|
|
- include: checks.yml
|
|
|
|
when: ceph_health.rc != 0
|
|
|
|
|
2015-07-28 23:15:19 +08:00
|
|
|
- include: pre_requisite.yml
|
2016-04-01 17:18:40 +08:00
|
|
|
- include: dirs_permissions.yml
|
2016-05-02 22:33:16 +08:00
|
|
|
- include: fetch_configs.yml
|
2016-04-01 17:18:40 +08:00
|
|
|
|
2015-10-21 18:02:50 +08:00
|
|
|
- include: selinux.yml
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
2015-07-28 23:15:19 +08:00
|
|
|
- include: start_docker_mds.yml
|