Fix ansible deprecation warnings

===
[DEPRECATION WARNING]: Using tests as filters is deprecated.
Instead of using `result|search` use `result is search`. This
feature will be removed in version 2.9.
===

Change-Id: Id2f8065cd81cd05c36fcbc33bb9c48b6574d30d1
This commit is contained in:
Jonathan Rosser 2018-12-03 17:12:52 +00:00
parent b15b97fa0a
commit 5351d7dc87
1 changed files with 3 additions and 3 deletions

View File

@ -191,9 +191,9 @@
lxc_container_veth_wiring: true
when:
- ((not lxc_container_veth_wiring | bool) and
((network_config | changed) and (network_includes | changed))) and
not ((default_configuration_container | changed) or
(bind_configuration_container | changed))
((network_config is changed) and (network_includes is changed))) and
not ((default_configuration_container is changed) or
(bind_configuration_container is changed))
- name: Run container veth wiring script
command: >-