From f060abb099a0270421d7e31c96608441fc42072a Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 29 Mar 2024 13:34:46 -0400 Subject: [PATCH] conditionals --- node2.yml | 1 + node3.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/node2.yml b/node2.yml index cebc21f..b2e3ef5 100644 --- a/node2.yml +++ b/node2.yml @@ -8,5 +8,6 @@ - name: Debug test_set_stats ansible.builtin.debug: msg: "Another node will use __bigboot_size_target -> {{ __bigboot_size_target }}" + when: __bigboot_size_target | length > 1 ... diff --git a/node3.yml b/node3.yml index cebc21f..34127e2 100644 --- a/node3.yml +++ b/node3.yml @@ -8,5 +8,6 @@ - name: Debug test_set_stats ansible.builtin.debug: msg: "Another node will use __bigboot_size_target -> {{ __bigboot_size_target }}" + when: __bigboot_size_target | length > 0 ...