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

28 lines
685 B
YAML
Raw Normal View History

---
- name: set config and keys paths
set_fact:
ceph_config_keys:
- /etc/ceph/ceph.conf
- /var/lib/ceph/bootstrap-rgw/ceph.keyring
- 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
ignore_errors: true
register: statconfig
- name: try to fetch ceph config and keys
2015-10-19 11:19:31 +08:00
copy:
src: "{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
dest: "{{ item.0 }}"
owner: root
group: root
mode: 644
changed_when: false
with_together:
- ceph_config_keys
- statconfig.results
when: item.1.stat.exists == true