summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-05-24 10:26:11 +0200
committerChristian Poessinger <christian@poessinger.com>2021-05-24 10:46:22 +0200
commit1064c5f901b8fb656793dd374a63635ac5375719 (patch)
tree08610dcab58020562fc3acbab074aa7acd4ec656 /python
parentf0020ef10d601c5e8dbcc4ed8fb1dab402170c9e (diff)
downloadvyos-1x-1064c5f901b8fb656793dd374a63635ac5375719.tar.gz
vyos-1x-1064c5f901b8fb656793dd374a63635ac5375719.zip
pseudo-ethernet: T3575: verify parent interface MTU
(cherry picked from commit 38b3dff1ebdf8c26a28d0befa6dcf0b4f51f21be)
Diffstat (limited to 'python')
-rw-r--r--python/vyos/configverify.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/configverify.py b/python/vyos/configverify.py
index 7f6fc040d..0ff45da2a 100644
--- a/python/vyos/configverify.py
+++ b/python/vyos/configverify.py
@@ -1,4 +1,4 @@
-# Copyright 2020 VyOS maintainers and contributors <maintainers@vyos.io>
+# Copyright 2020-2021 VyOS maintainers and contributors <maintainers@vyos.io>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -48,7 +48,7 @@ def verify_mtu(config):
def verify_mtu_parent(config, parent):
if 'mtu' not in config or 'mtu' not in parent:
return
-
+
mtu = int(config['mtu'])
parent_mtu = int(parent['mtu'])
if mtu > parent_mtu: