Skip to content

Commit 1c6f25d

Browse files
committed
Fix no longer valid variable name
1 parent a5aaad3 commit 1c6f25d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
- name: "Check port {{ ansible_port }}"
1+
- name: "Check port {{ ansible_ssh_port }}"
22
wait_for:
3-
port: "{{ ansible_port }}"
3+
port: "{{ ansible_ssh_port }}"
44
state: "started"
55
host: "{{ inventory_hostname }}"
66
connect_timeout: "5"
@@ -25,5 +25,5 @@
2525

2626
- name: Set SSH port to the defined fallback
2727
set_fact:
28-
ansible_port: "{{ fallback_ssh_port }}"
28+
ansible_ssh_port: "{{ fallback_ssh_port }}"
2929
when: ssh_port_default.state is defined

0 commit comments

Comments
 (0)