blob: e61920dca6b6c809e04b8c38731481731803c583 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- hosts: localhost
name: This is a playbook # <-- name key should be the first one
tasks:
- name: A block
when: true
block:
- name: Display a message
ansible.builtin.debug:
msg: Hello world!
|