Add OVSController to complete out-of-box Ubuntu experience.

This commit is contained in:
Bob Lantz
2012-03-08 23:48:07 -08:00
parent d27a3c52b9
commit 9addfc13ce
2 changed files with 11 additions and 4 deletions
+6
View File
@@ -847,6 +847,12 @@ class Controller( Node ):
return ip
class OVSController( Controller ):
"Open vSwitch controller"
def __init__( self, name, command='ovs-controller', **kwargs ):
Controller.__init__( self, name, command=command, **kwargs )
# BL: This really seems to be poorly specified,
# so it's going to go away!