Fix usage of "|" for tests

With the more recent versions of ansible, we should now use
"is" instead of the "|" sign for the tests.

This should fix it.

Change-Id: I8d78a2b4ba2a8746cbb809e4f8c9370abe211350
This commit is contained in:
Jean-Philippe Evrard 2018-07-12 16:44:21 +02:00
parent ee9ac0881c
commit f07aba1662
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@
when:
- ansible_os_family == "RedHat"
- security_rhel7_enable_linux_security_module | bool
- selinux_status_change | changed
- selinux_status_change is changed
tags:
- high
- V-71989