36 lines
627 B
YAML
36 lines
627 B
YAML
|
---
|
||
|
- hosts: localhost
|
||
|
gather_facts: False
|
||
|
|
||
|
pre_tasks:
|
||
|
- debug:
|
||
|
msg: "Schritt 1"
|
||
|
changed_when: True
|
||
|
notify: Handler Schritt 1
|
||
|
|
||
|
roles:
|
||
|
- { role: schritt2really }
|
||
|
|
||
|
tasks:
|
||
|
- debug:
|
||
|
msg: "Schritt 3"
|
||
|
changed_when: True
|
||
|
notify: Handler Schritt 3
|
||
|
|
||
|
post_tasks:
|
||
|
- debug:
|
||
|
msg: "Schritt 4"
|
||
|
changed_when: True
|
||
|
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"
|
||
|
|