diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-24 19:03:57 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-09-24 21:53:25 +0200 |
commit | 065adc3ab2ee6262b4a1a85762697ac81fc5b084 (patch) | |
tree | 0e23be39c2c7225063c74c2203b2ddd4c383e5e3 /src/conf_mode/interface-wireguard.py | |
parent | 09f4553ffdbf3c35696f08118d75793db33cb59b (diff) | |
download | vyos-1x-065adc3ab2ee6262b4a1a85762697ac81fc5b084.tar.gz vyos-1x-065adc3ab2ee6262b4a1a85762697ac81fc5b084.zip |
Python/ifconfig: T1557: refactor Interface 'state' property to set_state()/get_state()
Diffstat (limited to 'src/conf_mode/interface-wireguard.py')
-rwxr-xr-x | src/conf_mode/interface-wireguard.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf_mode/interface-wireguard.py b/src/conf_mode/interface-wireguard.py index 7254e153f..3fd29ad4d 100755 --- a/src/conf_mode/interface-wireguard.py +++ b/src/conf_mode/interface-wireguard.py @@ -173,11 +173,11 @@ def apply(c): # interface state if c[ifname]['state'] == 'disable': sl.syslog(sl.LOG_NOTICE, "disable interface " + ifname) - intfc.state = 'down' + intfc.set_state('down') else: - if not intfc.state == 'up': + if not intfc.get_state() == 'up': sl.syslog(sl.LOG_NOTICE, "enable interface " + ifname) - intfc.state = 'up' + intfc.set_state('up') # IP address if not c_eff.exists_effective(ifname + ' address'): |