From 65bb6a5af311d3ae8a487100781184bdcf1016c3 Mon Sep 17 00:00:00 2001 From: Baptiste Mille-Mathias Date: Thu, 18 Oct 2018 23:14:50 +0200 Subject: [PATCH] Use loop instead of with_items in examples (#47318) --- lib/ansible/modules/packaging/os/sorcery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/packaging/os/sorcery.py b/lib/ansible/modules/packaging/os/sorcery.py index c9de8aaf55d..bb9968fb917 100644 --- a/lib/ansible/modules/packaging/os/sorcery.py +++ b/lib/ansible/modules/packaging/os/sorcery.py @@ -113,7 +113,7 @@ EXAMPLES = ''' name: "{{ item.spell }}" depends: "{{ item.depends | default(None) }}" state: present - with_items: + loop: - { spell: 'vifm', depends: '+file,-gtk+2' } - { spell: 'fwknop', depends: 'gpgme' } - { spell: 'pv,tnftp,tor' }