diff options
author | aapostoliuk <a.apostoliuk@vyos.io> | 2024-04-29 17:55:54 +0300 |
---|---|---|
committer | aapostoliuk <a.apostoliuk@vyos.io> | 2024-04-29 17:55:54 +0300 |
commit | af7277c7d525c22749bc236ad2096bec5c08d998 (patch) | |
tree | fd92cc88ccb0259b82d7c163511c0b668c26746b /src | |
parent | 0c0799aa08a765812cf1266692539cf5ffda670b (diff) | |
download | vyos-1x-af7277c7d525c22749bc236ad2096bec5c08d998.tar.gz vyos-1x-af7277c7d525c22749bc236ad2096bec5c08d998.zip |
T6272: Changed interface existence verification in pppoe/ipoe to Warning
Throwing Warning message instead of Error if interface which is
used in pppoe/ipoe does not exist.
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/service_ipoe-server.py | 2 | ||||
-rwxr-xr-x | src/conf_mode/service_pppoe-server.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/service_ipoe-server.py b/src/conf_mode/service_ipoe-server.py index 11e950782..28b7fb03c 100755 --- a/src/conf_mode/service_ipoe-server.py +++ b/src/conf_mode/service_ipoe-server.py @@ -66,7 +66,7 @@ def verify(ipoe): raise ConfigError('No IPoE interface configured') for interface, iface_config in ipoe['interface'].items(): - verify_interface_exists(interface) + verify_interface_exists(interface, warning_only=True) if 'client_subnet' in iface_config and 'vlan' in iface_config: raise ConfigError('Option "client-subnet" and "vlan" are mutually exclusive, ' 'use "client-ip-pool" instead!') diff --git a/src/conf_mode/service_pppoe-server.py b/src/conf_mode/service_pppoe-server.py index b9d174933..328487985 100755 --- a/src/conf_mode/service_pppoe-server.py +++ b/src/conf_mode/service_pppoe-server.py @@ -105,7 +105,7 @@ def verify(pppoe): # Check is interface exists in the system for interface in pppoe['interface']: - verify_interface_exists(interface) + verify_interface_exists(interface, warning_only=True) return None |