Stop controller.
( self, *args, **kwargs )
| 1467 | |
| 1468 | # pylint: disable=arguments-differ,signature-differs |
| 1469 | def stop( self, *args, **kwargs ): |
| 1470 | "Stop controller." |
| 1471 | self.cmd( 'kill %' + self.command ) |
| 1472 | self.cmd( 'wait %' + self.command ) |
| 1473 | super( Controller, self ).stop( *args, **kwargs ) |
| 1474 | |
| 1475 | def IP( self, intf=None ): |
| 1476 | "Return IP address of the Controller" |