1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Do not say you delete what you don't (#426)

I hope these docs are lying, and this fix makes them say the truth.
This commit is contained in:
Jairo Llopis 2020-05-28 19:51:14 +01:00 committed by GitHub
parent fcca0fdfc2
commit 07a141fc85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ options:
default: no
containers_filters:
description:
- A dictionary of filter values used for selecting containers to delete.
- A dictionary of filter values used for selecting containers to list.
- "For example, C(until: 24h)."
- See L(the docker documentation,https://docs.docker.com/engine/reference/commandline/container_prune/#filtering)
for more information on possible filters.
@ -43,7 +43,7 @@ options:
default: no
images_filters:
description:
- A dictionary of filter values used for selecting images to delete.
- A dictionary of filter values used for selecting images to list.
- "For example, C(dangling: true)."
- See L(the docker documentation,https://docs.docker.com/engine/reference/commandline/image_prune/#filtering)
for more information on possible filters.
@ -55,7 +55,7 @@ options:
default: no
networks_filters:
description:
- A dictionary of filter values used for selecting networks to delete.
- A dictionary of filter values used for selecting networks to list.
- See L(the docker documentation,https://docs.docker.com/engine/reference/commandline/network_prune/#filtering)
for more information on possible filters.
type: dict
@ -66,7 +66,7 @@ options:
default: no
volumes_filters:
description:
- A dictionary of filter values used for selecting volumes to delete.
- A dictionary of filter values used for selecting volumes to list.
- See L(the docker documentation,https://docs.docker.com/engine/reference/commandline/volume_prune/#filtering)
for more information on possible filters.
type: dict