summaryrefslogtreecommitdiff
path: root/src/conf_mode/interfaces-tunnel.py
diff options
context:
space:
mode:
authorThomas Mangin <thomas.mangin@exa.net.uk>2020-03-27 18:10:49 +0000
committerThomas Mangin <thomas.mangin@exa.net.uk>2020-03-28 10:17:31 +0000
commit627d1c704c83efe973b16db61005aacb1a96aead (patch)
tree8fc2eb43bcaaf31d90985e3736248e958a26b4ce /src/conf_mode/interfaces-tunnel.py
parent583e9d907236a4a98fe40e97a378c1fb655f8a95 (diff)
downloadvyos-1x-627d1c704c83efe973b16db61005aacb1a96aead.tar.gz
vyos-1x-627d1c704c83efe973b16db61005aacb1a96aead.zip
ifconfig: T2057: explicity name state functions
The Interface get_state/set_state were not clear about if they edited the admin or operational state. functions are now using admin_state and oper_state for clarity.
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 90c1f8f71..4cbb51f4a 100755
--- a/src/conf_mode/interfaces-tunnel.py
+++ b/src/conf_mode/interfaces-tunnel.py
@@ -478,7 +478,7 @@ def apply(conf):
tunnel.add_addr(addr)
# now bring it up (or not)
- tunnel.set_state(options['state'])
+ tunnel.set_admin_state(options['state'])
if __name__ == '__main__':