commit
ad58e08a41
1 changed files with 7 additions and 1 deletions
|
@ -125,9 +125,15 @@
|
||||||
tags: bootstrap-os
|
tags: bootstrap-os
|
||||||
|
|
||||||
# Todo : selinux configuration
|
# 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
|
- name: Set selinux policy to permissive
|
||||||
selinux: policy=targeted state=permissive
|
selinux: policy=targeted state=permissive
|
||||||
when: ansible_os_family == "RedHat"
|
when: ansible_os_family == "RedHat" and slc.stat.exists == True
|
||||||
changed_when: False
|
changed_when: False
|
||||||
tags: bootstrap-os
|
tags: bootstrap-os
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue