Merge "Update task about selinux set."

This commit is contained in:
Zuul 2018-02-13 07:24:52 +00:00 committed by Gerrit Code Review
commit 151d7fff55
3 changed files with 13 additions and 5 deletions

View File

@ -12,7 +12,9 @@ create_kolla_user: True
enable_host_ntp: True
disable_selinux: True
change_selinux: True
selinux_state: "permissive"
docker_storage_driver: ""

View File

@ -115,13 +115,13 @@
- ansible_os_family == "RedHat"
- enable_host_ntp | bool
- name: Disable selinux
- name: Change state of selinux
selinux:
policy: target
state: permissive
policy: targeted
state: "{{ selinux_state }}"
become: true
when:
- disable_selinux | bool
- change_selinux | bool
- ansible_os_family == "RedHat"
- name: Reboot

View File

@ -0,0 +1,6 @@
---
features:
- |
Add a new parameter for changing selinux state. The default value is
"permissive". Update a parameter named "disable_selinux", use
"change_selinux" instead of it.