nodes.py: add demagify for ipmi data
This commit is contained in:
parent
d40efd2192
commit
8135e4160f
1 changed files with 2 additions and 0 deletions
2
nodes.py
2
nodes.py
|
@ -12,6 +12,8 @@ for name, data in nodes.items():
|
|||
|
||||
if 'password' in data:
|
||||
data['password'] = vault.decrypt(data['password'])
|
||||
if 'ipmi' in data:
|
||||
data['ipmi'].update(libs.demagify.demagify(data['ipmi'], vault))
|
||||
data['metadata'].update(libs.demagify.demagify(data['metadata'], vault))
|
||||
|
||||
for node in Path(join(repo_path, "nodes")).rglob("*.py"):
|
||||
|
|
Loading…
Add table
Reference in a new issue