27 lines
344 B
YAML
27 lines
344 B
YAML
---
|
|
- hosts:
|
|
- tn00-debian12
|
|
- tn00-alpine3i
|
|
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
- name: Debian bricht ab
|
|
debug:
|
|
msg: "Hallo"
|
|
failed_when: '"debian" in inventory_hostname'
|
|
|
|
|
|
- hosts:
|
|
- tn00-debian12
|
|
- tn00-alpine3i
|
|
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
- name: "Wer lebt noch?"
|
|
debug:
|
|
msg: "Lebenszeichen"
|
|
|
|
|