mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #11576 from srvg/combine_empty_vars_file
Do not combine group_vars with an empty file
This commit is contained in:
commit
5daa540bc0
1 changed files with 2 additions and 1 deletions
|
@ -308,7 +308,8 @@ class VariableManager:
|
||||||
paths = [os.path.join(path, name) for name in names if not name.startswith('.')]
|
paths = [os.path.join(path, name) for name in names if not name.startswith('.')]
|
||||||
for p in paths:
|
for p in paths:
|
||||||
_found, results = self._load_inventory_file(path=p, loader=loader)
|
_found, results = self._load_inventory_file(path=p, loader=loader)
|
||||||
data = self._combine_vars(data, results)
|
if results is not None:
|
||||||
|
data = self._combine_vars(data, results)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
file_name, ext = os.path.splitext(path)
|
file_name, ext = os.path.splitext(path)
|
||||||
|
|
Loading…
Reference in a new issue