diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2016-11-01 18:17:51 -0400 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2016-11-01 18:17:51 -0400 |
commit | 859180d0133343751efade55d1799d9da365d417 (patch) | |
tree | fbdb7d66489280290e74109404bfda818377899c | |
parent | b8eb9769a32c88a792851913b1d28c47f6ebf76f (diff) | |
download | ansible-modules-core-859180d0133343751efade55d1799d9da365d417.tar.gz |
corrected version added
-rw-r--r-- | cloud/docker/docker_login.py | 2 | ||||
-rw-r--r-- | utilities/logic/wait_for.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cloud/docker/docker_login.py b/cloud/docker/docker_login.py index 52f5f14c..bee5be46 100644 --- a/cloud/docker/docker_login.py +++ b/cloud/docker/docker_login.py @@ -72,7 +72,7 @@ options: - self.config_path - dockercfg_path state: - version_added: '2.2' + version_added: '2.3' description: - This controls the current state of the user. C(present) will login in a user, C(absent) will log him out. - To logout you only need the registry server, which defaults to DockerHub. diff --git a/utilities/logic/wait_for.py b/utilities/logic/wait_for.py index 1eb6a52a..d57d18d7 100644 --- a/utilities/logic/wait_for.py +++ b/utilities/logic/wait_for.py @@ -106,11 +106,11 @@ options: description: - list of hosts or IPs to ignore when looking for active TCP connections for C(drained) state sleep: - version_added: "2.1" + version_added: "2.3" required: false default: 1 description: - - Number of seconds to sleep between checks, before 2.1 this was hardcoded to 1 second. + - Number of seconds to sleep between checks, before 2.3 this was hardcoded to 1 second. notes: - The ability to use search_regex with a port connection was added in 1.7. requirements: [] |