diff options
author | b-abadie <1434660+b-abadie@users.noreply.github.com> | 2019-03-27 20:18:01 +0100 |
---|---|---|
committer | Alicia Cozine <879121+acozine@users.noreply.github.com> | 2019-03-27 20:18:01 +0100 |
commit | 9e6b6385e88552cd0bf91f13f1c3f90b0e9e917c (patch) | |
tree | 63f1f47a339cf5b64c3aedfff06aa34dd162e718 /docs | |
parent | Fix service integration test python selection. (#54449) (diff) | |
download | ansible-9e6b6385e88552cd0bf91f13f1c3f90b0e9e917c.tar.xz ansible-9e6b6385e88552cd0bf91f13f1c3f90b0e9e917c.zip |
Fix example on address | ipsubnet(20) usage (#54388)
<!--- Your description here -->
`192.168.128.0/20` does not contain `192.168.144.5`, the correct subnet is `192.168.144.0/20` (which is what is rendered on my test template).
+label: docsite_pr
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst b/docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst index e24a6a8d00..1560fcc556 100644 --- a/docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst +++ b/docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst @@ -479,7 +479,7 @@ the first argument, the ``ipsubnet()`` filter will instead return the biggest su contains that given IP address:: # {{ address | ipsubnet(20) }} - 192.168.128.0/20 + 192.168.144.0/20 By specifying an index number as a second argument, you can select smaller and smaller subnets:: |