1
0
Fork 0
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:
Serge van Ginderachter 2014-03-11 12:20:58 +01:00
parent 7f028c101c
commit 29c60bdaff

View file

@ -123,7 +123,8 @@ def _load_vars_from_folder(folder_path, results):
# filesystem lists them. # filesystem lists them.
names.sort() 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: for path in paths:
_found, results = _load_vars_from_path(path, results) _found, results = _load_vars_from_path(path, results)
return results return results