diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-28 11:25:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-28 11:25:03 +0100 |
commit | 09ac6734678660dfb12e058da68cf88ddeea4dce (patch) | |
tree | fdd28271219b70430a1a6437186af437317c3320 /python/vyos/ifconfig/geneve.py | |
parent | c423848d2e4816df598ad0269edf3da652a7c53f (diff) | |
parent | 627d1c704c83efe973b16db61005aacb1a96aead (diff) | |
download | vyos-1x-09ac6734678660dfb12e058da68cf88ddeea4dce.tar.gz vyos-1x-09ac6734678660dfb12e058da68cf88ddeea4dce.zip |
Merge pull request #275 from thomas-mangin/T2057-oper-admin
ifconfig: T2057: explicity name state functions
Diffstat (limited to 'python/vyos/ifconfig/geneve.py')
-rw-r--r-- | python/vyos/ifconfig/geneve.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/geneve.py b/python/vyos/ifconfig/geneve.py index f27786417..0c1cdade9 100644 --- a/python/vyos/ifconfig/geneve.py +++ b/python/vyos/ifconfig/geneve.py @@ -49,7 +49,7 @@ class GeneveIf(Interface): self._cmd(cmd) # interface is always A/D down. It needs to be enabled explicitly - self.set_state('down') + self.set_admin_state('down') @classmethod def get_config(cls): |