fixed issue with subclasses across the repos clobbering each other, they
now merge
This commit is contained in:
parent
2ba5c3c66b
commit
339d1ccc8b
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ def list_modules(module_dir, depth=0):
|
|||
res = list_modules(d, depth + 1)
|
||||
for key in res.keys():
|
||||
if key in categories:
|
||||
categories[key].update(res[key])
|
||||
categories[key] = ansible.utils.merge_hash(categories[key], res[key])
|
||||
res.pop(key, None)
|
||||
|
||||
if depth < 2:
|
||||
|
|
Loading…
Reference in a new issue