diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-23 21:55:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-23 21:55:32 +0200 |
commit | bbac02cf9a93dc33c5a4d5ae6db57319780d5579 (patch) | |
tree | b1be8345595791e911024478178164bc8c603ea4 /src | |
parent | a18d92b2205bd647691c39fde925d05d8d83fa1e (diff) | |
parent | 1eb77ba15ac3c6354c2ea5a4f10b65345103c02b (diff) | |
download | vyos-1x-bbac02cf9a93dc33c5a4d5ae6db57319780d5579.tar.gz vyos-1x-bbac02cf9a93dc33c5a4d5ae6db57319780d5579.zip |
Merge pull request #375 from thomas-mangin/T2374
tunnel: 2374: fix use of disable
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/interfaces-tunnel.py | 2 |
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',]) |