nodes.py: demagify toml nodes
This commit is contained in:
parent
70bd7d295d
commit
97307fc6f3
2 changed files with 28 additions and 3 deletions
10
nodes.py
10
nodes.py
|
@ -7,6 +7,13 @@ import bwpass
|
|||
from bundlewrap.metadata import atomic
|
||||
from bundlewrap.utils import error_context
|
||||
|
||||
for name, data in nodes.items():
|
||||
data.setdefault('metadata', {})
|
||||
|
||||
if 'password' in data:
|
||||
data['password'] = vault.decrypt(data['password'])
|
||||
data['metadata'].update(libs.demagify.demagify(data['metadata'], vault))
|
||||
|
||||
for node in Path(join(repo_path, "nodes")).rglob("*.py"):
|
||||
with error_context(filename=str(node)):
|
||||
with open(node, 'r') as f:
|
||||
|
@ -15,6 +22,3 @@ for node in Path(join(repo_path, "nodes")).rglob("*.py"):
|
|||
for name, data in nodes.items():
|
||||
data.setdefault('hostname', '.'.join(reversed(name.split('.'))) + '.kunbox.net')
|
||||
data.setdefault('metadata', {}).setdefault('hostname', '.'.join(reversed(name.split('.'))) + '.kunbox.net')
|
||||
|
||||
if 'password' in data:
|
||||
data['password'] = vault.decrypt(data['password'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue