From 5cb0059353e94dc11aa116e4aa8ce0422c4f3534 Mon Sep 17 00:00:00 2001 From: hagbard Date: Mon, 16 Mar 2020 08:31:36 -0700 Subject: T2125: show interfaces wireguard wg0 error - That should probably move to it's own op command library as it is the onlt function print out specific information --- python/vyos/ifconfig/wireguard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/vyos/ifconfig/wireguard.py b/python/vyos/ifconfig/wireguard.py index 2926e72e1..411c3e146 100644 --- a/python/vyos/ifconfig/wireguard.py +++ b/python/vyos/ifconfig/wireguard.py @@ -16,6 +16,7 @@ import os +import vyos from vyos.ifconfig.interface import Interface class WireGuardIf(Interface): @@ -101,7 +102,7 @@ class WireGuardIf(Interface): wgdump = vyos.interfaces.wireguard_dump().get( self.config['ifname'], None) - c = Config() + c = vyos.config.Config() c.set_level(["interfaces", "wireguard", self.config['ifname']]) description = c.return_effective_value(["description"]) ips = c.return_effective_values(["address"]) -- cgit v1.2.3