diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-23 20:36:52 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-23 20:36:52 +0100 |
commit | 1eb77ba15ac3c6354c2ea5a4f10b65345103c02b (patch) | |
tree | b1be8345595791e911024478178164bc8c603ea4 | |
parent | a18d92b2205bd647691c39fde925d05d8d83fa1e (diff) | |
download | vyos-1x-1eb77ba15ac3c6354c2ea5a4f10b65345103c02b.tar.gz vyos-1x-1eb77ba15ac3c6354c2ea5a4f10b65345103c02b.zip |
tunnel: 2374: fix use of disable
-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',]) |