summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdwin Smulders <edwin.smulders@gmail.com>2019-02-26 22:06:06 +0100
committerBrian Coca <bcoca@users.noreply.github.com>2019-02-26 16:06:06 -0500
commitea30fd15b55f80ff6b20ed89a6dad9c12389ba7d (patch)
tree3e1e0da5484852c7902a1134ed077d07e66ed4c6
parent7f2e72420321775b88b7354b051a4ce089330f96 (diff)
downloadansible-ea30fd15b55f80ff6b20ed89a6dad9c12389ba7d.tar.gz
Clarify restrictions of excludes property in find module. (#49549)
-rw-r--r--lib/ansible/modules/files/find.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/files/find.py b/lib/ansible/modules/files/find.py
index d3bfee2d79..0b85dfc47b 100644
--- a/lib/ansible/modules/files/find.py
+++ b/lib/ansible/modules/files/find.py
@@ -45,7 +45,7 @@ options:
excludes:
description:
- One or more (shell or regex) patterns, which type is controlled by C(use_regex) option.
- - Items matching an C(excludes) pattern are culled from C(patterns) matches.
+ - Items whose basenames match an C(excludes) pattern are culled from C(patterns) matches.
Multiple patterns can be specified using a list.
type: list
aliases: [ exclude ]