Change in vdsm[master]: dnsmasqDhcp: fix an inverted condition

osvoboda at redhat.com osvoboda at redhat.com
Mon Feb 9 23:21:45 UTC 2015


Ondřej Svoboda has uploaded a new change for review.

Change subject: dnsmasqDhcp: fix an inverted condition
......................................................................

dnsmasqDhcp: fix an inverted condition

Anywhere _except_ EL6 we want to use dnsmasq with --bind-dynamic.

Change-Id: I4fdc2ad5e173f7627be213bb40878293c373a530
Signed-off-by: Ondřej Svoboda <osvoboda at redhat.com>
---
M tests/functional/networkTests.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/35/37635/1

diff --git a/tests/functional/networkTests.py b/tests/functional/networkTests.py
index 37feeb2..93c2d4e 100644
--- a/tests/functional/networkTests.py
+++ b/tests/functional/networkTests.py
@@ -114,7 +114,7 @@
             (None, None) if el6 else (DHCPv6_RANGE_FROM, DHCPv6_RANGE_TO))
         dhcpServer.start(interface, DHCP_RANGE_FROM, DHCP_RANGE_TO,
                          dhcpv6_range_from, dhcpv6_range_to, router=IP_GATEWAY,
-                         bind_dynamic=el6)
+                         bind_dynamic=not el6)
     except dhcp.DhcpError as e:
         raise SkipTest(e)
 


-- 
To view, visit http://gerrit.ovirt.org/37635
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4fdc2ad5e173f7627be213bb40878293c373a530
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Ondřej Svoboda <osvoboda at redhat.com>


More information about the vdsm-patches mailing list