summaryrefslogtreecommitdiff
path: root/src/conf_mode/interfaces-tunnel.py
diff options
context:
space:
mode:
authorThomas Mangin <thomas.mangin@exa.net.uk>2020-04-23 20:36:52 +0100
committerThomas Mangin <thomas.mangin@exa.net.uk>2020-04-23 20:36:52 +0100
commit1eb77ba15ac3c6354c2ea5a4f10b65345103c02b (patch)
treeb1be8345595791e911024478178164bc8c603ea4 /src/conf_mode/interfaces-tunnel.py
parenta18d92b2205bd647691c39fde925d05d8d83fa1e (diff)
downloadvyos-1x-1eb77ba15ac3c6354c2ea5a4f10b65345103c02b.tar.gz
vyos-1x-1eb77ba15ac3c6354c2ea5a4f10b65345103c02b.zip
tunnel: 2374: fix use of disable
Diffstat (limited to 'src/conf_mode/interfaces-tunnel.py')
-rwxr-xr-xsrc/conf_mode/interfaces-tunnel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-tunnel.py b/src/conf_mode/interfaces-tunnel.py
index 9c0c42414..fc084814a 100755
--- a/src/conf_mode/interfaces-tunnel.py
+++ b/src/conf_mode/interfaces-tunnel.py
@@ -461,7 +461,7 @@ def verify(conf):
# what are the tunnel options we can set / modified / deleted
kls = get_class(options)
- valid = kls.updates + ['alias', 'addresses-add', 'addresses-del', 'vrf']
+ valid = kls.updates + ['alias', 'addresses-add', 'addresses-del', 'vrf', 'state']
if changes['section'] == 'create':
valid.extend(['type',])