33 lines
546 B
YAML
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"
|
|
|