Merge pull request #1049 from alop/selinux

Safe disable SELinux
This commit is contained in:
Antoine Legrand 2017-02-19 10:26:01 +01:00 committed by GitHub
commit ad58e08a41

View file

@ -125,9 +125,15 @@
tags: bootstrap-os
# Todo : selinux configuration
- name: Confirm selinux deployed
stat:
path: /etc/selinux/config
when: ansible_os_family == "RedHat"
register: slc
- name: Set selinux policy to permissive
selinux: policy=targeted state=permissive
when: ansible_os_family == "RedHat"
when: ansible_os_family == "RedHat" and slc.stat.exists == True
changed_when: False
tags: bootstrap-os