2024-11/10/block.yml

18 lines
361 B
YAML
Raw Permalink Normal View History

2024-11-28 14:26:24 +00:00
---
- hosts: localhost
tasks:
- block:
- debug: msg='OK'
- shell: /bin/false
- debug: msg='Niemals'
rescue:
- debug: msg='Im Fehlerfall'
- shell: /bin/false
- debug: msg='Niemals'
always:
- debug: msg='echo Immer'
when: ansible_os_family == 'Debian'
- debug: 'msg="Nach dem Block"'