diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-11 14:58:12 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-08-11 14:58:14 +0200 |
commit | 29463355e6ec98195ffd52e018bc775cd4199456 (patch) | |
tree | 4b5dbac39a7f8252ca7298adeaed82ed770676b7 | |
parent | b6427a12cc796ba6919db7cafeeb5fc8e193b352 (diff) | |
download | vyos-1x-29463355e6ec98195ffd52e018bc775cd4199456.tar.gz vyos-1x-29463355e6ec98195ffd52e018bc775cd4199456.zip |
accel-ppp: T3731: eliminate service name from error message
VyOS will automatically append the subsystem name (pppoe-server or sstp) when
something goes wrong. No need to hardcode this into the error string a second
time.
-rw-r--r-- | python/vyos/configverify.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/configverify.py b/python/vyos/configverify.py index 58028b604..4279e6982 100644 --- a/python/vyos/configverify.py +++ b/python/vyos/configverify.py @@ -344,7 +344,7 @@ def verify_accel_ppp_base_service(config): # vertify auth settings if dict_search('authentication.mode', config) == 'local': if not dict_search('authentication.local_users', config): - raise ConfigError('PPPoE local auth mode requires local users to be configured!') + raise ConfigError('Authentication mode local requires local users to be configured!') for user in dict_search('authentication.local_users.username', config): user_config = config['authentication']['local_users']['username'][user] @@ -368,7 +368,7 @@ def verify_accel_ppp_base_service(config): raise ConfigError(f'Missing RADIUS secret key for server "{server}"') if 'gateway_address' not in config: - raise ConfigError('PPPoE server requires gateway-address to be configured!') + raise ConfigError('Server requires gateway-address to be configured!') if 'name_server_ipv4' in config: if len(config['name_server_ipv4']) > 2: |