summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBaptiste Mille-Mathias <baptiste.millemathias@gmail.com>2018-10-19 00:54:07 +0200
committerAlicia Cozine <879121+acozine@users.noreply.github.com>2018-10-18 17:54:07 -0500
commitbac43eebe0defeca1b4de7c9c1a59f9dba8dea26 (patch)
tree894a460be7ca9abf538169264cc5e9f17d90ab3b /lib
parent541255a2d8795c45dd3a07993509ebbca6d46537 (diff)
downloadansible-bac43eebe0defeca1b4de7c9c1a59f9dba8dea26.tar.gz
Use loop instead of obsolete with_items in example (#47246)
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/modules/system/firewalld.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/system/firewalld.py b/lib/ansible/modules/system/firewalld.py
index 5d9a4df5ce..0df4f19877 100644
--- a/lib/ansible/modules/system/firewalld.py
+++ b/lib/ansible/modules/system/firewalld.py
@@ -144,7 +144,7 @@ EXAMPLES = '''
permanent: yes
immediate: yes
state: enabled
- with_items:
+ loop:
- ipv4
- ipv6
'''