diff options
author | John Estabrook <jestabro@vyos.io> | 2024-08-09 13:28:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-09 13:28:54 -0500 |
commit | 44a50ed2915371f4e967cf49768e0dd827a48018 (patch) | |
tree | d49c2287901758e8ec6c7ec57b721c0f95a790b3 /python | |
parent | 7a4a462ef60a9e53a222d03d106fed793c33ec9e (diff) | |
parent | d2ba8f755de1c5817ae2c70e06e55868613a0d33 (diff) | |
download | vyos-1x-44a50ed2915371f4e967cf49768e0dd827a48018.tar.gz vyos-1x-44a50ed2915371f4e967cf49768e0dd827a48018.zip |
Merge pull request #3962 from vyos/mergify/bp/sagitta/pr-3960
qos: T6638: require interface state existence in verify conditional (backport #3960)
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/configverify.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/python/vyos/configverify.py b/python/vyos/configverify.py index 4cb84194a..b49d66c36 100644 --- a/python/vyos/configverify.py +++ b/python/vyos/configverify.py @@ -237,7 +237,7 @@ def verify_bridge_delete(config): raise ConfigError(f'Interface "{interface}" cannot be deleted as it ' f'is a member of bridge "{bridge_name}"!') -def verify_interface_exists(ifname, warning_only=False): +def verify_interface_exists(ifname, state_required=False, warning_only=False): """ Common helper function used by interface implementations to perform recurring validation if an interface actually exists. We first probe @@ -249,11 +249,12 @@ def verify_interface_exists(ifname, warning_only=False): from vyos.utils.dict import dict_search_recursive from vyos.utils.network import interface_exists - # Check if interface is present in CLI config - config = ConfigTreeQuery() - tmp = config.get_config_dict(['interfaces'], get_first_key=True) - if bool(list(dict_search_recursive(tmp, ifname))): - return True + if not state_required: + # Check if interface is present in CLI config + config = ConfigTreeQuery() + tmp = config.get_config_dict(['interfaces'], get_first_key=True) + if bool(list(dict_search_recursive(tmp, ifname))): + return True # Interface not found on CLI, try Linux Kernel if interface_exists(ifname): |