2024-09/10/block_02_Fehler_Block.yml
2024-09-19 10:09:15 +02:00

18 lines
361 B
YAML

---
- hosts: localhost
tasks:
- block:
- debug: msg='Block 1'
- command: /bin/false
- debug: msg='Block 2'
rescue:
- debug: msg='Rescue 1'
- command: /bin/true
- debug: msg='Rescue 2'
always:
- debug: msg='Always'
when: ansible_os_family == 'Debian'
- debug: 'msg="Nach dem Block"'