Update usage of "|" to "is"

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

This should update it.

Change-Id: I5af1d3d7aa33fc3d0c1c32e35e3c27d8def1d9b8
This commit is contained in:
wangqi 2018-09-05 10:28:56 +00:00
parent 1f92d9a5fb
commit aa188dd1b8
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@
{{ configure_instance_user | default('cirros') }}@{{ instance_ip }}
"cat /etc/hostname"
register: ssh_result
until: ssh_result | succeeded
until: ssh_result is success
retries: 30
delay: 20