mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
group_vars plugin: do not parse hidden files in subfolders, e.g. avoid .svn/
This commit is contained in:
parent
7f028c101c
commit
29c60bdaff
1 changed files with 2 additions and 1 deletions
|
@ -123,7 +123,8 @@ def _load_vars_from_folder(folder_path, results):
|
|||
# filesystem lists them.
|
||||
names.sort()
|
||||
|
||||
paths = [os.path.join(folder_path, name) for name in names]
|
||||
# do not parse hidden files or dirs, e.g. .svn/
|
||||
paths = [os.path.join(folder_path, name) for name in names if not name.startswith('.')]
|
||||
for path in paths:
|
||||
_found, results = _load_vars_from_path(path, results)
|
||||
return results
|
||||
|
|
Loading…
Reference in a new issue