2017-09-11 16:54:03 +08:00
|
|
|
---
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact bootstrap_rbd_keyring
|
2017-09-11 16:54:03 +08:00
|
|
|
set_fact:
|
|
|
|
bootstrap_rbd_keyring: "/var/lib/ceph/bootstrap-rbd/{{ cluster }}.keyring"
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2017-10-13 00:27:36 +08:00
|
|
|
- ceph_release_num[ceph_release] >= ceph_release_num.luminous
|
2017-09-11 16:54:03 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: set_fact ceph_config_keys
|
2017-09-11 16:54:03 +08:00
|
|
|
set_fact:
|
|
|
|
ceph_config_keys:
|
|
|
|
- /etc/ceph/{{ cluster }}.client.admin.keyring
|
2017-10-06 04:25:34 +08:00
|
|
|
- "{{ bootstrap_rbd_keyring | default('') }}"
|
2017-09-11 16:54:03 +08:00
|
|
|
|
|
|
|
- name: stat for ceph config and keys
|
|
|
|
local_action: stat path={{ fetch_directory }}/{{ fsid }}/{{ item }}
|
|
|
|
with_items: "{{ ceph_config_keys }}"
|
|
|
|
changed_when: false
|
|
|
|
become: false
|
|
|
|
failed_when: false
|
2017-10-25 22:53:34 +08:00
|
|
|
check_mode: no
|
2017-09-11 16:54:03 +08:00
|
|
|
register: statconfig
|
2017-10-06 04:25:34 +08:00
|
|
|
when: "item | length > 0"
|
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
|
|
|
|
with_together:
|
|
|
|
- "{{ ceph_config_keys }}"
|
|
|
|
- "{{ statconfig.results }}"
|
2017-09-15 06:48:53 +08:00
|
|
|
when:
|
2017-10-06 04:25:34 +08:00
|
|
|
- not item.1.get('skipped')
|
2017-09-15 06:48:53 +08:00
|
|
|
- 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'
|