blob: 505741ee626404dd379ea4cde1643695a39e44d8 (
plain)
1
2
3
4
5
6
7
8
9
|
---
- hosts: localhost
tasks:
- name: Example of multi-level block
block:
- name: 2nd level
block:
- ansible.builtin.debug: # noqa: unnamed-task
msg: "test unnamed task in block"
|