diff options
author | John Estabrook <jestabro@vyos.io> | 2020-11-12 08:34:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 08:34:01 -0600 |
commit | bf31936562e4e827373ac56661a9e1a48ee0a0a6 (patch) | |
tree | 1d9a2a72366fde7ec757264bbab08a483cb72596 /python/vyos/validate.py | |
parent | 2e498164218851f1b958c43a7b903849a80b8304 (diff) | |
parent | 3466941316a70ac840ebdcc7576230158be8a0fb (diff) | |
download | vyos-1x-bf31936562e4e827373ac56661a9e1a48ee0a0a6.tar.gz vyos-1x-bf31936562e4e827373ac56661a9e1a48ee0a0a6.zip |
Merge pull request #594 from jack9603301/T3042
bridge: T3042: Support VLAN filter and VLAN sub-interface on the bridge
Diffstat (limited to 'python/vyos/validate.py')
-rw-r--r-- | python/vyos/validate.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python/vyos/validate.py b/python/vyos/validate.py index 74488bed6..74b8adcfc 100644 --- a/python/vyos/validate.py +++ b/python/vyos/validate.py @@ -239,7 +239,6 @@ def assert_mac(m): if octets[:5] == (0, 0, 94, 0, 1): raise ValueError(f'{m} is a VRRP MAC address') - def has_address_configured(conf, intf): """ Checks if interface has an address configured. |