( self, name, **kwargs )
| 1495 | class OVSController( Controller ): |
| 1496 | "Open vSwitch controller" |
| 1497 | def __init__( self, name, **kwargs ): |
| 1498 | kwargs.setdefault( 'command', self.isAvailable() or |
| 1499 | 'ovs-controller' ) |
| 1500 | Controller.__init__( self, name, **kwargs ) |
| 1501 | |
| 1502 | @classmethod |
| 1503 | def isAvailable( cls ): |
nothing calls this directly
no test coverage detected