Files
ansible_bxlife/roles/pallxk.code_server/tasks/tests.yml
2025-03-12 13:55:27 +01:00

14 lines
283 B
YAML

---
- name: Test connectivity locally
wait_for:
port: "{{ code_server_port }}"
timeout: 15
- name: Test connectivity remotely
wait_for:
host: "{{ inventory_hostname }}"
port: "{{ code_server_port }}"
timeout: 15
delegate_to: localhost
ignore_errors: yes