This also lays the foundation for the possibility of log drivers in the future, if it is decided that is a direction to pursue. Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
14 lines
204 B
Go
14 lines
204 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/docker/machine/log"
|
|
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
func cmdKill(c *cli.Context) {
|
|
if err := runActionWithContext("kill", c); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|