Merge "Fix SELinux file contexts for nova's ssh keys"

This commit is contained in:
Zuul 2018-02-01 12:31:55 +00:00 committed by Gerrit Code Review
commit ce35b6a778

View File

@ -13,29 +13,32 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Check if /var/lib/nova exists # TODO(mhayden): Remove this task during the Rocky development cycle.
stat:
path: /var/lib/nova
register: openstack_nova_dir
- name: Check for SELinux equivalence for /var/lib/nova - name: Check for SELinux equivalence for /var/lib/nova
shell: "semanage fcontext -l /var/lib/nova | grep '^/var/lib/nova = /var/log/libvirt$' || true" shell: "semanage fcontext -l /var/lib/nova | grep '^/var/lib/nova = /var/log/libvirt$' || true"
register: fcontext_check register: fcontext_check
tags: tags:
- skip_ansible_lint - skip_ansible_lint
- name: Create SELinux fcontext equivalence for nova instance dir # NOTE(mhayden): The old equivalence added in Pike is removed here since it
command: semanage fcontext --add --equal /var/log/libvirt /var/lib/nova # is superseded by the task right after this one.
# TODO(mhayden): Remove this task during the Rocky development cycle.
- name: Remove SELinux fcontext equivalence for nova instance directory
command: semanage fcontext --delete --equal /var/log/libvirt /var/lib/nova
failed_when: selinux_equivalence.rc not in [0,1] failed_when: selinux_equivalence.rc not in [0,1]
changed_when: selinux_equivalence.rc == 0 changed_when: selinux_equivalence.rc == 0
register: selinux_equivalence register: selinux_equivalence
when: when:
- openstack_nova_dir.stat.exists
- '"/var/lib/nova" not in fcontext_check.stdout' - '"/var/lib/nova" not in fcontext_check.stdout'
- name: Set SELinux file contexts for nova's ssh keys
sefcontext:
target: "/var/lib/nova/\\.ssh(/.*)?"
setype: "ssh_home_t"
state: present
register: selinux_file_context_ssh_keys
- name: Apply updated SELinux contexts on /var/lib/nova - name: Apply updated SELinux contexts on /var/lib/nova
command: restorecon -R /var/lib/nova command: restorecon -R /var/lib/nova
when: when:
- openstack_nova_dir.stat.exists - selinux_equivalence | changed or selinux_file_context_ssh_keys | changed
- '"/var/lib/nova" not in fcontext_check.stdout'
- selinux_equivalence | changed