blob: d515361441bf22ce24498d4a37f7a3d8a89cbe80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
# https://github.com/ansible/ansible-lint/issues/3216
- name: "Reproduce for bug #3216 warning from core module using Display.warning()"
hosts: localhost
gather_facts: false
tasks:
- name: Some task
ansible.builtin.debug:
msg: "{{ qq | unique }}"
vars:
qq: ["qq", "ww"]
|