Use is instead of ambiguous pipe

The pipe | can be interpreted as a filter and cause errors.
The correct way to define when a 'succeeded' condition is met
should be by using the word 'is'.

Change-Id: Ica8091d96a8a5f1ec93ec4f6bfb7e3f24672f29a
This commit is contained in:
Riccardo Pittau 2020-06-17 10:03:03 +02:00
parent 8c3f6469db
commit 35e0457b6a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
url: "{{ centos_image_url }}"
dest: "{{ centos_image_file }}.xz"
register: centos_image_result
until: centos_image_result | succeeded
until: centos_image_result is succeeded
retries: 3
delay: 10