summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/capture-warning.yml
blob: ee206901cd387e85e0f3b1d0d63c63161f7f4e5b (plain)
1
2
3
4
5
6
7
8
---
- name: Fixture to generate a warning
  hosts: localhost
  tasks:
    - name: Generate a warning
      ansible.builtin.debug:
        msg: "This is a warning"
      when: "{{ false }}" # noqa: 102 jinja[spacing]