diff options
Diffstat (limited to '6/bgp.py')
-rwxr-xr-x | 6/bgp.py | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -4,10 +4,9 @@ from swiplserver import PrologMQI, PrologThread import yaml import os -def to_ansible(kind, objs): - for o in objs: - host = o['host'] - print(f"k={host}") +def to_ansible(kind, hosts): + for host, o in hosts.items(): + print(f"host={host}") os.makedirs(f"group_vars/{host}", exist_ok=True) with open(f"group_vars/{host}/{kind}.yaml", "w") as f: f.write(yaml.dump(o)) |