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: If3e4366c22e900557e4730a7e8838f55ffe30ecc
This commit is contained in:
Jean-Philippe Evrard
2018-07-12 16:44:21 +02:00
parent 9b22c41c86
commit 9f53e04687
15 changed files with 33 additions and 33 deletions

View File

@@ -48,7 +48,7 @@
force: yes
accept_hostkey: yes
register: git_clone
until: git_clone|success
until: git_clone is success
retries: 5
delay: 2
notify:
@@ -68,7 +68,7 @@
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
{{ pip_install_options|default('') }}
register: install_packages
until: install_packages|success
until: install_packages is success
retries: 5
delay: 2
when:

View File

@@ -48,7 +48,7 @@
force: yes
accept_hostkey: yes
register: git_clone
until: git_clone|success
until: git_clone is success
retries: 5
delay: 2
notify: