Correct variable used in SELinux context tasks

The correct name of the registered variable used to stat the neutron log
directory for SELinux contexts tasks is 'neutron_log_dir_check'.

Change-Id: I06fea11b1f6270be1aac3a89dbc061d4d5cd5690
This commit is contained in:
Jimmy McCrory 2018-02-16 20:35:38 -08:00
parent aefdf17162
commit 1c1ebf071c

View File

@ -64,12 +64,12 @@
- name: Set SELinux file contexts for neutron's log directory
sefcontext:
target: "{{ (neutron_log_dir_check.stat.islnk) | ternary(neutron_log_dir.stat.lnk_target, neutron_log_dir) }}(/.*)?"
target: "{{ (neutron_log_dir_check.stat.islnk) | ternary(neutron_log_dir_check.stat.lnk_target, neutron_log_dir) }}(/.*)?"
setype: neutron_log_t
state: present
register: selinux_file_context_log_files
- name: Apply updated SELinux contexts on neutron log directory
command: "restorecon -Rv {{ (neutron_log_dir_check.stat.islnk) | ternary(neutron_log_dir.stat.lnk_target, neutron_log_dir) }}"
command: "restorecon -Rv {{ (neutron_log_dir_check.stat.islnk) | ternary(neutron_log_dir_check.stat.lnk_target, neutron_log_dir) }}"
when:
- selinux_file_context_log_files | changed