mirror of https://github.com/ceph/ceph-ansible.git
14 lines
299 B
YAML
14 lines
299 B
YAML
|
---
|
||
|
- name: check if selinux is enabled
|
||
|
command: getenforce
|
||
|
register: sestatus
|
||
|
changed_when: false
|
||
|
|
||
|
- name: set selinux permissions
|
||
|
shell: chcon -Rt svirt_sandbox_file_t {{ item }}
|
||
|
with_items:
|
||
|
- /etc/ceph
|
||
|
- /var/lib/ceph
|
||
|
changed_when: false
|
||
|
when: sestatus.stdout != 'Disabled'
|