Handler_Examples/playbook_pre_post_tasks_roles_handlers.yml

33 lines
546 B
YAML
Raw Permalink Normal View History

2021-02-24 11:49:58 +00:00
---
- 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"