Skip to content
Snippets Groups Projects
Commit ce5738b4 authored by lantz's avatar lantz
Browse files

Merge pull request #533 from pichuang/node

Check for ovs-testcontroller in OVSController
parents 447db4c7 db3bffa9
No related branches found
No related tags found
No related merge requests found
......@@ -1428,7 +1428,8 @@ def __init__( self, name, command='ovs-controller', **kwargs ):
@classmethod
def isAvailable( cls ):
return ( quietRun( 'which ovs-controller' ) or
quietRun( 'which test-controller' ) )
quietRun( 'which test-controller' ) or
quietRun( 'which ovs-testcontroller' ) )
class NOX( Controller ):
"Controller to run a NOX application."
......
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