[Backport 2.7] wait_for: Add note about path and port (#49118)

Document that Path and Port are mutually exclusive parameters in the wait_for module.
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
(cherry picked from commit 70f992c618)
This commit is contained in:
Abhijeet Kasurde 2018-11-27 01:28:43 +05:30 committed by Alicia Cozine
parent eab6034c79
commit 24eb3c5c60
2 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- Document Path and Port are mutually exclusive parameters in wait_for module.

View file

@ -50,6 +50,7 @@ options:
port:
description:
- Port number to poll.
- C(path) and C(port) are mutually exclusive parameters.
active_connection_states:
description:
- The list of TCP connection states which are counted as active connections.
@ -67,6 +68,7 @@ options:
version_added: "1.4"
description:
- Path to a file on the filesystem that must exist before continuing.
- C(path) and C(port) are mutually exclusive parameters.
search_regex:
version_added: "1.4"
description:
@ -87,7 +89,7 @@ options:
- This overrides the normal error message from a failure to meet the required conditions.
notes:
- The ability to use search_regex with a port connection was added in 1.7.
- Prior to 2.4, testing for the absense of a directory or UNIX socket did not work correctly.
- Prior to 2.4, testing for the absence of a directory or UNIX socket did not work correctly.
- Prior to 2.4, testing for the presence of a file did not work correctly if the remote user did not have read access to that file.
- Under some circumstances when using mandatory access control, a path may always be treated as being absent even if it exists, but
can't be modified or created by the remote user either.