From f9c270ae3c52e5db8450a228e1c1dbcd9d3d7afe Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Tue, 22 Oct 2024 15:12:44 +0200 Subject: [PATCH] fix: reword warning message for disabled checks Signed-off-by: Antonio Murdaca --- usr/libexec/greenboot/greenboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/libexec/greenboot/greenboot b/usr/libexec/greenboot/greenboot index 24f9f8a..e8dcbdb 100755 --- a/usr/libexec/greenboot/greenboot +++ b/usr/libexec/greenboot/greenboot @@ -27,7 +27,7 @@ source_configuration_file function print_unexecuted_checks { for disabled_healthcheck in "${DISABLED_HEALTHCHECKS[@]}"; do if [[ "${DIS_CHECK_STATUS[$disabled_healthcheck]}" == 1 ]]; then - echo "WARNING: $disabled_healthcheck was not found and may be misspelled" + echo "WARNING: $disabled_healthcheck wasn't executed because it's disabled" fi done }