diff options
author | Brian Coca <bcoca@users.noreply.github.com> | 2020-04-17 09:51:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 09:51:05 -0400 |
commit | d3cab602a5b4578d5623bc5d4322681294abf2c2 (patch) | |
tree | 094708ebeb1807c7d095d55da74d1dfd1cf1a97f /changelogs/fragments/fileglob_fixes.yml | |
parent | acdc9eb76d23e25ed8b1c7fc4fe8e4f9fd6f49fd (diff) | |
download | ansible-d3cab602a5b4578d5623bc5d4322681294abf2c2.tar.gz |
Fix fileglob when using 'file*' vs 'stuff/file*' (#68945)
* Fix fileglob when using 'file*' vs 'stuff/file*'
when not having dir in glob, files/ subdir was being ignored.
* tests for fileglob
Diffstat (limited to 'changelogs/fragments/fileglob_fixes.yml')
-rw-r--r-- | changelogs/fragments/fileglob_fixes.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/changelogs/fragments/fileglob_fixes.yml b/changelogs/fragments/fileglob_fixes.yml new file mode 100644 index 0000000000..c0a12b0734 --- /dev/null +++ b/changelogs/fragments/fileglob_fixes.yml @@ -0,0 +1,2 @@ +bugfixes: + - deal with cases in which just a file is pased and not a path with directories, now fileglob correctly searches in 'files/' subdirs. |