mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
group_vars plugin: do not parse hidden files in subfolders, e.g. avoid .svn/
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user