Update playbook to newer syntax.

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

This patch updates the syntax to a non deprecated one

Change-Id: I555dde8bc565f96d8f38fdabc99546e396335095
This commit is contained in:
Jonathan Herlin 2018-11-25 17:16:45 +01:00
parent 98f6740218
commit 7b56f1d9b7
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@
- url: "{{ keystone_service_internaluri }}"
validate_certs: "{{ not keystone_service_internaluri_insecure }}"
register: _wait_check
until: _wait_check | success
until: _wait_check is success
retries: 12
delay: 5