diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-01 20:57:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-01 20:57:21 +0100 |
commit | 9109a5603963216180f6d6fe09820ee1ba227ade (patch) | |
tree | 644c63f9cc3922d414ed81d0590f5f6d84c2d707 /src/conf_mode/service_pppoe-server.py | |
parent | c7e01e3e9b6b4a598e85f709ebcb8118e50494c3 (diff) | |
parent | 489bbde7131b24e756fc052bae096322ad9e6059 (diff) | |
download | vyos-1x-9109a5603963216180f6d6fe09820ee1ba227ade.tar.gz vyos-1x-9109a5603963216180f6d6fe09820ee1ba227ade.zip |
Merge pull request #2916 from vyos/mergify/bp/sagitta/pr-2832
T5865: Moved ipv6 pools to named ipv6 pools in accel-ppp (backport #2832)
Diffstat (limited to 'src/conf_mode/service_pppoe-server.py')
-rwxr-xr-x | src/conf_mode/service_pppoe-server.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conf_mode/service_pppoe-server.py b/src/conf_mode/service_pppoe-server.py index 7c624f034..31299a15c 100755 --- a/src/conf_mode/service_pppoe-server.py +++ b/src/conf_mode/service_pppoe-server.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2018-2023 VyOS maintainers and contributors +# Copyright (C) 2018-2024 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -85,6 +85,7 @@ def verify(pppoe): if not dict_search('authentication.radius.dynamic_author.key', pppoe): raise ConfigError('DA/CoE server key required!') + return None |