From a116425bef3336630431b83f77152cbc38ada0ba Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Thu, 12 Jul 2018 16:44:21 +0200 Subject: [PATCH] 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 --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 19e07c5..c9bc7b9 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -35,7 +35,7 @@ when: - systemd_networkd_distro_packages | length > 0 register: install_packages - until: install_packages|success + until: install_packages is success retries: 3 delay: 2