From af7277c7d525c22749bc236ad2096bec5c08d998 Mon Sep 17 00:00:00 2001 From: aapostoliuk Date: Mon, 29 Apr 2024 17:55:54 +0300 Subject: 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. --- src/conf_mode/service_pppoe-server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/conf_mode/service_pppoe-server.py') 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 -- cgit v1.2.3