Files
proxmox-talos/ping.yml
2026-02-14 22:12:03 +01:00

13 lines
257 B
YAML

- name: Ping site
shell: |
if [[ "$(uname)" == "Darwin" ]]; then
ping -c 1 -t 2 semaphoreui.com
else
ping -c 1 -w 2 semaphoreui.com
fi
register: ping_result
- name: Ping result
debug:
msg: "{{ ping_result.stdout_lines }}"