Skip to content
Snippets Groups Projects
Commit 4f98f08f authored by pengdake's avatar pengdake
Browse files

Update task about selinux set.

1.Fix the invalid value about selinux policy
2.Update description of task about selinux.The permissive mode
need enable selinux.The parameter named "disable_selinux" is not good.
In order to customize selinux modes, we need a new
parameter named "selinux_state".

Closes-Bug: #1749046
Change-Id: I20c084cf2e46cc0de149afbd34c6dcb77a1051f4
parent 437d232d
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,9 @@ create_kolla_user: True ...@@ -12,7 +12,9 @@ create_kolla_user: True
enable_host_ntp: True enable_host_ntp: True
disable_selinux: True change_selinux: True
selinux_state: "permissive"
docker_storage_driver: "" docker_storage_driver: ""
......
...@@ -115,13 +115,13 @@ ...@@ -115,13 +115,13 @@
- ansible_os_family == "RedHat" - ansible_os_family == "RedHat"
- enable_host_ntp | bool - enable_host_ntp | bool
- name: Disable selinux - name: Change state of selinux
selinux: selinux:
policy: target policy: targeted
state: permissive state: "{{ selinux_state }}"
become: true become: true
when: when:
- disable_selinux | bool - change_selinux | bool
- ansible_os_family == "RedHat" - ansible_os_family == "RedHat"
- name: Reboot - name: Reboot
......
---
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.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment