13 lines
285 B
YAML
13 lines
285 B
YAML
---
|
|
- name: Wait unlock port
|
|
ansible.builtin.wait_for:
|
|
host: "{{ ansible_host }}"
|
|
port: "{{ unlock_port }}"
|
|
delegate_to: localhost
|
|
|
|
- name: Unlock
|
|
ansible.builtin.include_tasks: unlock.yml
|
|
|
|
- name: Wait for {{ inventory_hostname }}
|
|
ansible.builtin.wait_for_connection:
|