vyos-conf-builder/compiler/dns.py
Benjamin Tayehanpour c04a9a752a works enough for now
2026-06-16 22:47:04 +02:00

6 lines
129 B
Python

def build_dns(services, cfg):
return([
{"name": s.name, "ip": s.internal_ip}
for s in services
if "dns" in s.exposure
])