blob: 836060859f7468c012fc9643b8af8b70a0a0d6ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
- name: Example with discouraged free-form syntax
hosts: localhost
tasks:
- name: Create a placefolder file
ansible.builtin.command: chdir=/tmp touch foo # <-- don't use shorthand
changed_when: false
- name: Use raw to echo
ansible.builtin.raw: executable=/bin/bash echo foo # <-- don't use executable=
changed_when: false
- name: Testing anything else passed to raw except for string
ansible.builtin.raw:
args: "123"
changed_when: false
|