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: I121deed7c095899a07ab030b77ccd7ecc55c0b18
This commit is contained in:
parent
6040d8dfe9
commit
a116425bef
@ -35,7 +35,7 @@
|
|||||||
when:
|
when:
|
||||||
- systemd_networkd_distro_packages | length > 0
|
- systemd_networkd_distro_packages | length > 0
|
||||||
register: install_packages
|
register: install_packages
|
||||||
until: install_packages|success
|
until: install_packages is success
|
||||||
retries: 3
|
retries: 3
|
||||||
delay: 2
|
delay: 2
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user