mirror of https://github.com/ceph/ceph-ansible.git
34 lines
833 B
YAML
34 lines
833 B
YAML
---
|
|
- name: set_fact ceph_config_keys
|
|
set_fact:
|
|
ceph_config_keys:
|
|
- /etc/ceph/{{ cluster }}.client.admin.keyring
|
|
- /var/lib/ceph/bootstrap-rbd/{{ cluster }}.keyring
|
|
|
|
- name: stat for ceph config and keys
|
|
local_action:
|
|
module: stat
|
|
path: "{{ fetch_directory }}/{{ fsid }}/{{ item }}"
|
|
with_items: "{{ ceph_config_keys }}"
|
|
changed_when: false
|
|
become: false
|
|
failed_when: false
|
|
check_mode: no
|
|
register: statconfig
|
|
when: "item | length > 0"
|
|
|
|
- name: try to fetch ceph config and keys
|
|
copy:
|
|
src: "{{ fetch_directory }}/{{ fsid }}/{{ item.0 }}"
|
|
dest: "{{ item.0 }}"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
changed_when: false
|
|
with_together:
|
|
- "{{ ceph_config_keys }}"
|
|
- "{{ statconfig.results }}"
|
|
when:
|
|
- not item.1.get('skipped')
|
|
- item.1.stat.exists == true
|