From 9a54e8804c3bd408e53b7c0bf14d0ce2557c6b76 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Thu, 28 May 2020 19:51:14 +0100 Subject: [PATCH] Do not say you delete what you don't (#426) I hope these docs are lying, and this fix makes them say the truth. --- plugins/modules/docker_host_info.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/modules/docker_host_info.py b/plugins/modules/docker_host_info.py index 1bb78bcb..4d21bce2 100644 --- a/plugins/modules/docker_host_info.py +++ b/plugins/modules/docker_host_info.py @@ -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