17 lines
533 B
Python
17 lines
533 B
Python
|
from json import dumps as json_dumps
|
||
|
from os.path import join
|
||
|
from pathlib import Path
|
||
|
|
||
|
from bundlewrap.metadata import atomic
|
||
|
|
||
|
for node in Path(join(repo_path, "nodes")).rglob("*.py"):
|
||
|
with open(node, 'r') as f:
|
||
|
exec(f.read())
|
||
|
|
||
|
for name, data in nodes.items():
|
||
|
if 'hostname' not in data.keys():
|
||
|
data['hostname'] = '.'.join(reversed(name.split('.'))) + '.kunbox.net'
|
||
|
|
||
|
if 'hostname' not in data['metadata'].keys():
|
||
|
data['metadata']['hostname'] = '.'.join(reversed(name.split('.'))) + '.kunbox.net'
|