summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-04-23 21:55:32 +0200
committerGitHub <noreply@github.com>2020-04-23 21:55:32 +0200
commitbbac02cf9a93dc33c5a4d5ae6db57319780d5579 (patch)
treeb1be8345595791e911024478178164bc8c603ea4
parenta18d92b2205bd647691c39fde925d05d8d83fa1e (diff)
parent1eb77ba15ac3c6354c2ea5a4f10b65345103c02b (diff)
downloadvyos-1x-bbac02cf9a93dc33c5a4d5ae6db57319780d5579.tar.gz
vyos-1x-bbac02cf9a93dc33c5a4d5ae6db57319780d5579.zip
Merge pull request #375 from thomas-mangin/T2374
tunnel: 2374: fix use of disable
-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',])