Expansion of previous commit.

This commit is contained in:
Daan
2025-02-27 21:47:55 +01:00
parent db7ff19bfb
commit a722c024f5
12 changed files with 154 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
---
name: Ping Multiple Points
group: "Kubernetes"
#target_os: "Debian"
variables:
- name: host1
value: "1.1.1.1"
- name: host2
value: "9.9.9.9"
- name: command1
value: "ping"
- name: cmd_arguments
value: "-c 4"
tasks:
- name: Ping host1
command: "{{ command1 }} {{ host1 }} {{ cmd_arguments }}"
- name: Ping host2
command: "{{ command1 }} {{ host2 }} {{ cmd_arguments }}"