openstack-ansible-os_cinder/tasks/cinder_selinux.yml
Major Hayden 66319e9008
Add SELinux contexts for cinder log directory
The log directory for cinder has the default_t SELinux context and this
prevents rsyslog from accessing cinders's logs. This patch ensures that
the file contexts are set properly for cinders's logs.

This change also makes cinder's log directory configurable using the
`cinder_log_dir` variable.

Closes-Bug: 1748969
Change-Id: Idd1abdd5987ef120b23f8eef49b1c5198f40d900
2018-02-14 15:35:05 -06:00

32 lines
1.2 KiB
YAML

---
# Copyright 2018, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Stat cinder's log directory
stat:
path: "{{ cinder_log_dir }}"
register: cinder_log_dir_check
- name: Set SELinux file contexts for cinder's log directory
sefcontext:
target: "{{ (cinder_log_dir_check.stat.islnk) | ternary(cinder_log_dir_check.stat.lnk_target, cinder_log_dir) }}(/.*)?"
setype: cinder_log_t
state: present
register: selinux_file_context_log_files
- name: Apply updated SELinux contexts on cinder log directory
command: "restorecon -Rv {{ (cinder_log_dir_check.stat.islnk) | ternary(cinder_log_dir_check.stat.lnk_target, cinder_log_dir) }}"
when:
- selinux_file_context_log_files | changed