Handler_Examples/handler_test_1.yml
2021-02-24 12:49:58 +01:00

22 lines
352 B
YAML

---
- hosts:
- tnSV-debian9
- tnSV-debian10
- tnSV-ubu2004a
- tnSV-alpine3C
tasks:
- command: /bin/true
when: ansible_os_family == "Debian"
notify: Echo-Handler
- fail:
when: ansible_distribution == "Ubuntu"
handlers:
- name: Echo-Handler
debug:
msg: "Der Handler wurde aufgerufen!"