2024-11/10/block_09_Fehler_Block_und_Always.yml

20 lines
423 B
YAML
Raw Permalink Normal View History

2024-11-28 14:26:24 +00:00
---
- 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 1'
- command: /bin/false
- debug: msg='Always 2'
when: ansible_os_family == 'Debian'
- debug: 'msg="Nach dem Block"'