2025-03/10/block_01_kein_Problem.yml
2025-03-27 14:20:05 +01:00

18 lines
360 B
YAML

---
- hosts: localhost
tasks:
- block:
- debug: msg='Block 1'
- command: /bin/true
- 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"'