commit 07b15ac052bcd9b357e6be4e6f40c57d58923860 Author: martijn Date: Sat Feb 14 22:12:03 2026 +0100 Add ping.yml diff --git a/ping.yml b/ping.yml new file mode 100644 index 0000000..4384d2d --- /dev/null +++ b/ping.yml @@ -0,0 +1,13 @@ +- 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 }}" \ No newline at end of file