2016-07-21 21:17:19 +08:00
|
|
|
---
|
|
|
|
- name: set config and keys paths
|
|
|
|
set_fact:
|
2017-09-11 16:54:03 +08:00
|
|
|
ceph_config_keys:
|
|
|
|
- /var/lib/ceph/bootstrap-rgw/{{ cluster }}.keyring
|
2016-07-21 21:17:19 +08:00
|
|
|
|
2017-09-11 16:54:03 +08:00
|
|
|
- name: stat for ceph config and keys
|
2017-07-13 22:22:54 +08:00
|
|
|
local_action: stat path={{ fetch_directory }}/{{ fsid }}/{{ item }}
|
2017-09-11 16:54:03 +08:00
|
|
|
with_items: "{{ ceph_config_keys }}"
|
2016-07-21 21:17:19 +08:00
|
|
|
changed_when: false
|
|
|
|
become: false
|
2017-09-11 16:54:03 +08:00
|
|
|
ignore_errors: true
|
2017-10-25 22:48:09 +08:00
|
|
|
always_run: true
|
2016-07-21 21:17:19 +08:00
|
|
|
register: statconfig
|
|
|
|
|
2017-09-11 16:54:03 +08:00
|
|
|
- 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
|
2016-07-21 21:17:19 +08:00
|
|
|
with_together:
|
2017-09-11 16:54:03 +08:00
|
|
|
- "{{ ceph_config_keys }}"
|
2016-11-03 17:16:33 +08:00
|
|
|
- "{{ statconfig.results }}"
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
|
|
|
- item.1.stat.exists == true
|
2017-09-11 16:54:03 +08:00
|
|
|
|
|
|
|
- name: set selinux permissions
|
|
|
|
shell: |
|
|
|
|
chcon -Rt svirt_sandbox_file_t {{ item }}
|
|
|
|
with_items:
|
|
|
|
- "{{ ceph_conf_key_directory }}"
|
|
|
|
- /var/lib/ceph
|
|
|
|
changed_when: false
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2017-09-29 08:19:09 +08:00
|
|
|
- ansible_os_family == 'RedHat'
|
2017-09-15 06:48:53 +08:00
|
|
|
- sestatus.stdout != 'Disabled'
|