From 274a73fe134285d29423f0d6ba373f2357ea80a0 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Tue, 27 May 2025 18:07:38 +0000 Subject: [PATCH] change case for clarity Final adjustment is to make it very easy to see with REQUIRES vs NOT --- playbooks/check-reboot-needed.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/check-reboot-needed.yml b/playbooks/check-reboot-needed.yml index 0ba6d67..a7b78c4 100644 --- a/playbooks/check-reboot-needed.yml +++ b/playbooks/check-reboot-needed.yml @@ -10,4 +10,4 @@ - name: Display reboot status debug: - msg: "{{ inventory_hostname }} {{ 'requires' if reboot_flag.stat.exists else 'does NOT require' }} a reboot." + msg: "{{ inventory_hostname }} {{ 'REQUIRES' if reboot_flag.stat.exists else 'does NOT require' }} a reboot."