aboutsummaryrefslogtreecommitdiffstats
path: root/vicn/resource/linux
diff options
context:
space:
mode:
authorMarcel Enguehard <mengueha+fdio@cisco.com>2017-04-25 13:37:27 +0200
committerMarcel Enguehard <mengueha+fdio@cisco.com>2017-04-25 13:37:27 +0200
commita42b1e0f2ef7ca75bfece00a0ea597b95fae88c1 (patch)
treea170b045f9320d12f9365765a7a13ba2fca56f4a /vicn/resource/linux
parentba05bc2b35dd94577e4279fb875d576874b88086 (diff)
Typo for VPP interfaces + More explicit exceptions for BashTask + Forgotten if-statement in LxcContainer setup
Change-Id: I7b450b13e632899bef5ff37168a9454fe4e92640 Signed-off-by: Marcel Enguehard <mengueha+fdio@cisco.com>
Diffstat (limited to 'vicn/resource/linux')
-rw-r--r--vicn/resource/linux/link.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/vicn/resource/linux/link.py b/vicn/resource/linux/link.py
index b3ba4e07..a930b8a3 100644
--- a/vicn/resource/linux/link.py
+++ b/vicn/resource/linux/link.py
@@ -118,17 +118,17 @@ class Link(Channel):
#XXX VPP
if hasattr(self.src_node, 'vpp') and not self.src_node.vpp is None:
- vpp_src = VPPInterface(parent = self.src,
+ vpp_src = VPPInterface(parent = self._src,
vpp = self.src_node.vpp,
- ip_address = Reference(self.src, 'ip_address'),
- device_name = 'vpp' + self.src.device_name)
+ ip_address = Reference(self._src, 'ip_address'),
+ device_name = 'vpp' + self._src.device_name)
manager.commit_resource(vpp_src)
if hasattr(self.dst_node, 'vpp') and not self.dst_node.vpp is None:
- vpp_dst = VPPInterface(parent = self.dst,
+ vpp_dst = VPPInterface(parent = self._dst,
vpp = self.dst_node.vpp,
- ip_address = Reference(self.dst, 'ip_address'),
- device_name = 'vpp' + self.dst.device_name)
+ ip_address = Reference(self._dst, 'ip_address'),
+ device_name = 'vpp' + self._dst.device_name)
manager.commit_resource(vpp_dst)
#--------------------------------------------------------------------------