diff mbox series

[v1,4/9] Clean up task messages

Message ID 20250114200348.1706018-5-cel@kernel.org (mailing list archive)
State New
Headers show
Series Random short subjects | expand

Commit Message

Chuck Lever Jan. 14, 2025, 8:03 p.m. UTC
From: Chuck Lever <chuck.lever@oracle.com>

The "{{ ansible_host }}" variable is never evaluated in task
messages, so fix the message. A similar message in the
update_etc_hosts role is updated for consistency.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
 playbooks/roles/devconfig/tasks/main.yml        | 2 +-
 playbooks/roles/update_etc_hosts/tasks/main.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/playbooks/roles/devconfig/tasks/main.yml b/playbooks/roles/devconfig/tasks/main.yml
index fec6ea3b5939..db96e9489c15 100644
--- a/playbooks/roles/devconfig/tasks/main.yml
+++ b/playbooks/roles/devconfig/tasks/main.yml
@@ -10,7 +10,7 @@ 
       skip: true
   tags: vars,vars_simple,vars_extra
 
-- name: Wait for {{ ansible_host }} to be available
+- name: Wait for target nodes to become reachable
   wait_for_connection:
 
 - name: Gathering facts
diff --git a/playbooks/roles/update_etc_hosts/tasks/main.yml b/playbooks/roles/update_etc_hosts/tasks/main.yml
index 0fd9fefc1ccc..4c1307fb7c62 100644
--- a/playbooks/roles/update_etc_hosts/tasks/main.yml
+++ b/playbooks/roles/update_etc_hosts/tasks/main.yml
@@ -10,7 +10,7 @@ 
       skip: true
   tags: vars
 
-- name: Wait for hosts to become available
+- name: Wait for target nodes to become reachable
   wait_for_connection:
 
 - name: Gather network facts