Skip to content

Commit 94ae426

Browse files
committed
Clean up task messages
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. Reviewed-by: Luis Chamberlain <[email protected]> Signed-off-by: Chuck Lever <[email protected]>
1 parent 0e3d2cb commit 94ae426

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

playbooks/roles/devconfig/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
skip: true
1111
tags: vars,vars_simple,vars_extra
1212

13-
- name: Wait for {{ ansible_host }} to be available
13+
- name: Wait for target nodes to become reachable
1414
wait_for_connection:
1515

1616
- name: Gathering facts

playbooks/roles/update_etc_hosts/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
skip: true
1111
tags: vars
1212

13-
- name: Wait for hosts to become available
13+
- name: Wait for target nodes to become reachable
1414
wait_for_connection:
1515

1616
- name: Gather network facts

0 commit comments

Comments
 (0)