From 4c2efa4b67b9c97df79ed9dd56470abfc8255114 Mon Sep 17 00:00:00 2001 From: Eugene Zvyagintsev Date: Fri, 19 Oct 2018 13:12:28 +0300 Subject: [PATCH] Documentation for docker_container: fix documentation for memory_swappiness. Default value will not equal 0, it will be inherited from the host machine (#47296) --- lib/ansible/modules/cloud/docker/docker_container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/docker/docker_container.py b/lib/ansible/modules/cloud/docker/docker_container.py index 62ec4247521..040a510f851 100644 --- a/lib/ansible/modules/cloud/docker/docker_container.py +++ b/lib/ansible/modules/cloud/docker/docker_container.py @@ -242,7 +242,7 @@ options: memory_swappiness: description: - Tune a container's memory swappiness behavior. Accepts an integer between 0 and 100. - default: 0 + - If not set, the value will be remain the same if container exists and will be inherited from the host machine if it is (re-)created. name: description: - Assign a name to a new container or match an existing container.