2015-07-28 21:44:52 +08:00
|
|
|
---
|
|
|
|
- name: set config and keys paths
|
|
|
|
set_fact:
|
|
|
|
ceph_config_keys:
|
|
|
|
- /etc/ceph/ceph.client.admin.keyring
|
|
|
|
- /etc/ceph/ceph.conf
|
|
|
|
- /etc/ceph/monmap
|
|
|
|
- /etc/ceph/ceph.mon.keyring
|
|
|
|
- /var/lib/ceph/bootstrap-osd/ceph.keyring
|
|
|
|
- /var/lib/ceph/bootstrap-rgw/ceph.keyring
|
|
|
|
- /var/lib/ceph/bootstrap-mds/ceph.keyring
|
|
|
|
|
|
|
|
- name: stat for ceph config and keys
|
|
|
|
local_action: stat path={{ item }}
|
|
|
|
with_items: ceph_config_keys
|
|
|
|
changed_when: false
|
|
|
|
sudo: false
|
2015-07-29 00:21:15 +08:00
|
|
|
failed_when: false
|
2015-07-28 21:44:52 +08:00
|
|
|
register: statconfig
|
|
|
|
|
|
|
|
- name: try to fetch ceph config and keys
|
|
|
|
copy: >
|
|
|
|
src=fetch/docker_mon_files/{{ item.0 }}
|
|
|
|
dest={{ item.0 }}
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
mode=644
|
2015-07-30 17:33:08 +08:00
|
|
|
changed_when: false
|
2015-07-28 21:44:52 +08:00
|
|
|
with_together:
|
|
|
|
- ceph_config_keys
|
|
|
|
- statconfig.results
|
|
|
|
when: item.1.stat.exists == true
|