2015-07-28 22:05:35 +08:00
|
|
|
---
|
|
|
|
- name: set config and keys paths
|
|
|
|
set_fact:
|
|
|
|
ceph_config_keys:
|
2016-08-23 18:03:05 +08:00
|
|
|
- /etc/ceph/{{ cluster }}.conf
|
|
|
|
- /var/lib/ceph/bootstrap-osd/{{ cluster }}.keyring
|
2015-07-28 22:05:35 +08:00
|
|
|
|
2016-01-14 03:15:35 +08:00
|
|
|
- name: wait for ceph.conf and keys
|
|
|
|
local_action: >
|
|
|
|
wait_for
|
2016-12-01 05:11:24 +08:00
|
|
|
path="{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
|
2016-01-14 03:15:35 +08:00
|
|
|
become: false
|
2016-11-18 15:03:11 +08:00
|
|
|
with_items: "{{ ceph_config_keys }}"
|
2016-01-14 03:15:35 +08:00
|
|
|
|
2015-07-28 22:05:35 +08:00
|
|
|
- name: stat for ceph config and keys
|
2016-02-08 05:30:32 +08:00
|
|
|
local_action: stat path={{ fetch_directory }}/docker_mon_files/{{ item }}
|
2016-11-03 17:16:33 +08:00
|
|
|
with_items: "{{ ceph_config_keys }}"
|
2015-07-28 22:05:35 +08:00
|
|
|
changed_when: false
|
2016-02-04 19:36:46 +08:00
|
|
|
become: false
|
2015-07-29 00:21:15 +08:00
|
|
|
failed_when: false
|
2016-11-27 05:16:07 +08:00
|
|
|
always_run: true
|
2015-07-28 22:05:35 +08:00
|
|
|
register: statconfig
|
|
|
|
|
2016-01-14 03:15:35 +08:00
|
|
|
- name: try to copy ceph config and keys
|
2015-10-19 09:24:47 +08:00
|
|
|
copy:
|
2016-12-01 05:11:24 +08:00
|
|
|
src: "{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
|
2015-10-19 09:24:47 +08:00
|
|
|
dest: "{{ item.0 }}"
|
|
|
|
owner: root
|
|
|
|
group: root
|
2016-02-22 01:21:19 +08:00
|
|
|
mode: 0644
|
2015-07-30 17:33:08 +08:00
|
|
|
changed_when: false
|
2016-11-18 15:03:11 +08:00
|
|
|
with_items: "{{ ceph_config_keys }}"
|