diff options
author | aapostoliuk <a.apostoliuk@vyos.io> | 2024-01-12 12:51:46 +0200 |
---|---|---|
committer | aapostoliuk <a.apostoliuk@vyos.io> | 2024-01-16 11:27:59 +0200 |
commit | d187803c31175e471397dd4f77040ab56d2e1073 (patch) | |
tree | 96f1d0e9238caed74a572cf8a55d67c8c82c5e19 /src/conf_mode/service_pppoe-server.py | |
parent | ebf8c8d750357122023a0c96b41072065f755c2e (diff) | |
download | vyos-1x-d187803c31175e471397dd4f77040ab56d2e1073.tar.gz vyos-1x-d187803c31175e471397dd4f77040ab56d2e1073.zip |
T5865: Moved ipv6 pools to named ipv6 pools in accel-ppp
Moved ipv6 pools to named ipv6 pools in accel-ppp services
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 |