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.
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