2016-05-06 02:20:03 +08:00
|
|
|
---
|
2016-07-21 21:17:19 +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
|
|
|
|
- /etc/ceph/{{ cluster }}.client.admin.keyring
|
2016-07-21 21:17:19 +08:00
|
|
|
- /var/lib/ceph/radosgw/keyring
|
|
|
|
|
|
|
|
- name: stat for config and keys
|
|
|
|
local_action: stat path={{ fetch_directory }}/docker_mon_files/{{ item }}
|
2016-11-03 17:16:33 +08:00
|
|
|
with_items: "{{ ceph_config_keys }}"
|
2016-07-21 21:17:19 +08:00
|
|
|
changed_when: false
|
|
|
|
become: false
|
|
|
|
failed_when: false
|
2016-11-27 04:31:56 +08:00
|
|
|
always_run: true
|
2016-07-21 21:17:19 +08:00
|
|
|
register: statconfig
|
|
|
|
|
|
|
|
- name: try to fetch config and keys
|
|
|
|
copy:
|
|
|
|
src: "{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
|
|
|
|
dest: "{{ item.0 }}"
|
|
|
|
owner: "64045"
|
|
|
|
group: "64045"
|
|
|
|
mode: 0644
|
|
|
|
changed_when: false
|
2016-05-06 02:20:03 +08:00
|
|
|
with_together:
|
2016-11-03 17:16:33 +08:00
|
|
|
- "{{ ceph_config_keys }}"
|
|
|
|
- "{{ statconfig.results }}"
|
2016-07-21 21:17:19 +08:00
|
|
|
when: item.1.stat.exists == true
|