Skip to content
Snippets Groups Projects
Commit 32d3c2bc authored by Cody's avatar Cody
Browse files

removing debugging messages

parent ba43451b
No related branches found
No related tags found
No related merge requests found
...@@ -1063,7 +1063,6 @@ def start( self, controllers ): ...@@ -1063,7 +1063,6 @@ def start( self, controllers ):
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 @@ def start( self, controllers ): ...@@ -1072,7 +1071,6 @@ def start( self, controllers ):
'-- 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():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment