summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/rule-no-free-form-fail.yml
blob: f5bcb08c2cab63bec96246893ffdd485210bcd7e (plain)
1
2
3
4
5
6
7
8
9
10
---
- 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