We want to bind ping to specific device for vlan test. Using get_devname() is more appropriate and should be used instead of get_ip().
Signed-off-by: Jan Tluka jtluka@redhat.com --- recipes/regression_tests/phase1/virtual_bridge_2_vlans_over_bond.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/regression_tests/phase1/virtual_bridge_2_vlans_over_bond.py b/recipes/regression_tests/phase1/virtual_bridge_2_vlans_over_bond.py index 141f4f0..86adc7b 100644 --- a/recipes/regression_tests/phase1/virtual_bridge_2_vlans_over_bond.py +++ b/recipes/regression_tests/phase1/virtual_bridge_2_vlans_over_bond.py @@ -37,7 +37,7 @@ ping_mod2 = ctl.get_module("IcmpPing", options={ "addr" : g2.get_ip("guestnic", 0), "count" : 100, - "iface" : g4.get_ip("guestnic"), + "iface" : g4.get_devname("guestnic"), "interval" : 0.1 })
On Thu, Jun 25, 2015 at 01:48:18PM +0200, Jan Tluka wrote:
We want to bind ping to specific device for vlan test. Using get_devname() is more appropriate and should be used instead of get_ip().
Signed-off-by: Jan Tluka jtluka@redhat.com
Acked-by: Ondrej Lichtner olichtne@redhat.com
lnst-developers@lists.fedorahosted.org