From 1bb3ea3bfdc4fc8671230b2183cb1a52660f18b3 Mon Sep 17 00:00:00 2001 From: Travis Truman Date: Wed, 2 Mar 2016 10:45:34 -0500 Subject: [PATCH] Reformat YAML condition to list Change-Id: I23ef3a367aa0d76d897a366c90107de12927785c --- tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index fa84ce7..13b6d26 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -14,9 +14,9 @@ # limitations under the License. - include: container_create.yml - when: > - physical_host is defined and - inventory_hostname is defined and - physical_host != inventory_hostname + when: + - physical_host is defined + - inventory_hostname is defined + - physical_host != inventory_hostname tags: - lxc-container \ No newline at end of file