diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-10 08:02:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 08:02:16 +0100 |
commit | 39604f33a474351c0a2dc5fa683c16a150285612 (patch) | |
tree | 0392964c4cee2460bb914b8c79f97a95682a0066 /src/conf_mode | |
parent | 1f4e9bc3860e4829fe35ecfcbf32d9d4eb00f777 (diff) | |
parent | 66e45beb91ecc22e9ae662434ecce6ac3ea1ceb8 (diff) | |
download | vyos-1x-39604f33a474351c0a2dc5fa683c16a150285612.tar.gz vyos-1x-39604f33a474351c0a2dc5fa683c16a150285612.zip |
Merge pull request #2468 from indrajitr/ddclient-smoketest-20231108
ddclient: T5708: Additional smoketests for web-options
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/dns_dynamic.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf_mode/dns_dynamic.py b/src/conf_mode/dns_dynamic.py index d6ef620fe..2bccaee0f 100755 --- a/src/conf_mode/dns_dynamic.py +++ b/src/conf_mode/dns_dynamic.py @@ -93,7 +93,7 @@ def verify(dyndns): # Dynamic DNS service provider - configuration validation if 'service' in dyndns['address'][address]: for service, config in dyndns['address'][address]['service'].items(): - error_msg_req = f'is required for Dynamic DNS service "{service}" on "{address}" with protocol "{config["protocol"]}"' + error_msg_req = f'is required for Dynamic DNS service "{service}" on "{address}"' error_msg_uns = f'is not supported for Dynamic DNS service "{service}" on "{address}" with protocol "{config["protocol"]}"' for field in ['host_name', 'password', 'protocol']: @@ -101,13 +101,13 @@ def verify(dyndns): raise ConfigError(f'"{field.replace("_", "-")}" {error_msg_req}') if config['protocol'] in zone_necessary and 'zone' not in config: - raise ConfigError(f'"zone" {error_msg_req}') + raise ConfigError(f'"zone" {error_msg_req} with protocol "{config["protocol"]}"') if config['protocol'] not in zone_supported and 'zone' in config: raise ConfigError(f'"zone" {error_msg_uns}') if config['protocol'] not in username_unnecessary and 'username' not in config: - raise ConfigError(f'"username" {error_msg_req}') + raise ConfigError(f'"username" {error_msg_req} with protocol "{config["protocol"]}"') if config['protocol'] not in ttl_supported and 'ttl' in config: raise ConfigError(f'"ttl" {error_msg_uns}') |