Command
Display useful information for debugging purposes.
Parameters
Parameter | Type | Value | Description |
---|---|---|---|
msg | String | <any message> | Message to be displayed (including variables) |
Examples
---
- name: Retrieve the current working directory
steps:
- name: Print working directory
register: working_directory
command:
content: pwd
- name: Display this information
debug:
msg: {{ working_directory.output }}