removing debugging messages

This commit is contained in:
Cody
2014-05-28 12:56:24 -07:00
parent ba43451bd6
commit 32d3c2bc79
-2
View File
@@ -1063,7 +1063,6 @@ class OVSSwitch( Switch ):
clist += ' ptcp:%s' % self.listenPort clist += ' ptcp:%s' % self.listenPort
# Construct big ovs-vsctl command for new versions of OVS # Construct big ovs-vsctl command for new versions of OVS
if not self.isOldOVS(): if not self.isOldOVS():
print "\nusing a newer ovs version"
cmd = ( 'ovs-vsctl add-br %s ' % self + cmd = ( 'ovs-vsctl add-br %s ' % self +
'-- set Bridge %s ' % self + '-- set Bridge %s ' % self +
'other_config:datapath-id=%s ' % self.dpid + 'other_config:datapath-id=%s ' % self.dpid +
@@ -1072,7 +1071,6 @@ class OVSSwitch( Switch ):
'-- set-controller %s %s ' % (self, clist ) ) '-- set-controller %s %s ' % (self, clist ) )
# Construct ovs-vsctl commands for old versions of OVS # Construct ovs-vsctl commands for old versions of OVS
else: else:
print "\nusing an older ovs version"
self.cmd( 'ovs-vsctl add-br', self ) self.cmd( 'ovs-vsctl add-br', self )
for intf in self.intfList(): for intf in self.intfList():
if not intf.IP(): if not intf.IP():