summaryrefslogtreecommitdiff
path: root/src/conf_mode/service_dns_forwarding.py
diff options
context:
space:
mode:
authorHaim Gelfenbeyn <haim@g8n.me>2024-05-30 12:13:42 -0400
committerHaim Gelfenbeyn <haim@g8n.me>2024-05-30 15:24:26 -0400
commitf2d0701f50061374b5a4f55d33201629b3293248 (patch)
treedd7192adb827fe9b7acfcfd1e7cbb549b6ffe6f8 /src/conf_mode/service_dns_forwarding.py
parent19d8415512dcf87dc3a87feabf128652ffc74594 (diff)
downloadvyos-1x-f2d0701f50061374b5a4f55d33201629b3293248.tar.gz
vyos-1x-f2d0701f50061374b5a4f55d33201629b3293248.zip
T6422: Smoke test for NS record configration in authoritative DNS, typo & style fixes
Diffstat (limited to 'src/conf_mode/service_dns_forwarding.py')
-rwxr-xr-xsrc/conf_mode/service_dns_forwarding.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/service_dns_forwarding.py b/src/conf_mode/service_dns_forwarding.py
index e8318a83e..70686534f 100755
--- a/src/conf_mode/service_dns_forwarding.py
+++ b/src/conf_mode/service_dns_forwarding.py
@@ -115,7 +115,7 @@ def get_config(config=None):
})
elif rtype == 'ns':
if not 'target' in rdata:
- dns['authoritative_zone_errors'].append(f'{subnode}.{node}: at leaast one target is required')
+ dns['authoritative_zone_errors'].append(f'{subnode}.{node}: at least one target is required')
continue
for target in rdata['target']:
@@ -123,7 +123,7 @@ def get_config(config=None):
'name': subnode,
'type': rtype.upper(),
'ttl': rdata['ttl'],
- 'value': '{}.'.format(target)
+ 'value': f'{target}.'
})
elif rtype == 'mx':