2015-07-28 23:35:47 +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-rgw/{{ cluster }}.keyring
|
2015-07-28 23:35:47 +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 23:35:47 +08:00
|
|
|
changed_when: false
|
2016-02-04 19:36:46 +08:00
|
|
|
become: false
|
2015-07-28 23:35:47 +08:00
|
|
|
ignore_errors: true
|
2016-11-27 21:27:28 +08:00
|
|
|
always_run: true
|
2015-07-28 23:35:47 +08:00
|
|
|
register: statconfig
|
|
|
|
|
|
|
|
- name: try to fetch ceph config and keys
|
2015-10-19 11:19:31 +08:00
|
|
|
copy:
|
2016-12-01 05:18:36 +08:00
|
|
|
src: "{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
|
2015-10-19 11:19:31 +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
|
2015-07-28 23:35:47 +08:00
|
|
|
with_together:
|
2016-11-03 17:16:33 +08:00
|
|
|
- "{{ ceph_config_keys }}"
|
|
|
|
- "{{ statconfig.results }}"
|
2015-07-28 23:35:47 +08:00
|
|
|
when: item.1.stat.exists == true
|