ceph-ansible/roles/ceph-osd/tasks/docker/fetch_configs.yml

33 lines
854 B
YAML
Raw Normal View History

---
- name: set config and keys paths
set_fact:
ceph_config_keys:
- /etc/ceph/{{ cluster }}.conf
- /var/lib/ceph/bootstrap-osd/{{ cluster }}.keyring
2016-01-14 03:15:35 +08:00
- name: wait for ceph.conf and keys
local_action: >
wait_for
path="{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
2016-01-14 03:15:35 +08:00
become: false
with_items: "{{ ceph_config_keys }}"
2016-01-14 03:15:35 +08:00
- name: stat for ceph config and keys
local_action: stat path={{ fetch_directory }}/docker_mon_files/{{ item }}
with_items: "{{ ceph_config_keys }}"
changed_when: false
become: false
failed_when: false
always_run: true
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:
src: "{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
2015-10-19 09:24:47 +08:00
dest: "{{ item.0 }}"
owner: root
group: root
mode: 0644
changed_when: false
with_items: "{{ ceph_config_keys }}"