2024-09/10/block.yml

18 lines
361 B
YAML
Raw Normal View History

2024-09-19 08:09:15 +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"'