diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-05-21 12:40:25 +0000 |
|---|---|---|
| committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-05-21 12:40:25 +0000 |
| commit | 50c13119bc3593524281d35be099a56d02c2b0b7 (patch) | |
| tree | 654f617e280d6e392d95f00b8e951f5136c0c1a1 /src | |
| parent | a367f7adc56ac01cd6ef7db93564d53b48bb2610 (diff) | |
| download | vyos-1x-50c13119bc3593524281d35be099a56d02c2b0b7.tar.gz vyos-1x-50c13119bc3593524281d35be099a56d02c2b0b7.zip | |
T8883: Fix restart PPPoE-server service when RADIUS settings change
Restart the PPPoE server when RADIUS configuration is modified.
Previously, changes to settings such as `priority` and `backup`
were not applied until the service was restarted manually.
Diffstat (limited to 'src')
| -rwxr-xr-x | src/conf_mode/service_pppoe-server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/service_pppoe-server.py b/src/conf_mode/service_pppoe-server.py index a26fe58b1..ab9f8421c 100755 --- a/src/conf_mode/service_pppoe-server.py +++ b/src/conf_mode/service_pppoe-server.py @@ -124,7 +124,7 @@ def get_config(config=None): is_node_changed(conf, base + ['client-ip-pool']), is_node_changed(conf, base + ['client-ipv6-pool']), is_node_changed(conf, base + ['interface']), - is_node_changed(conf, base + ['authentication', 'radius', 'dynamic-author']), + is_node_changed(conf, base + ['authentication', 'radius']), is_node_changed(conf, base + ['authentication', 'mode']), any( base_ifname(iface) in all_changed_vpp_ifaces |
