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

33 lines
546 B
YAML

---
- hosts: localhost
gather_facts: False
pre_tasks:
- debug:
msg: "Schritt 1"
notify: Handler Schritt 1
roles:
- { role: schritt2 }
tasks:
- debug:
msg: "Schritt 3"
notify: Handler Schritt 3
post_tasks:
- debug:
msg: "Schritt 4"
notify: Handler Schritt 4
handlers:
- name: Handler Schritt 1
debug: msg="Handler Schritt 1"
- name: Handler Schritt 3
debug: msg="Handler Schritt 3"
- name: Handler Schritt 4
debug: msg="Handler Schritt 4"