mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 22:37:14 +08:00
a7278cad98
Closes #532 This requires the container id to always be passed to all runc commands as arg one on the cli. This was the result of the last OCI meeting and how operations work with the spec. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
21 lines
350 B
Go
21 lines
350 B
Go
// +build !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
var (
|
|
checkpointCommand cli.Command
|
|
eventsCommand cli.Command
|
|
restoreCommand cli.Command
|
|
specCommand cli.Command
|
|
killCommand cli.Command
|
|
)
|
|
|
|
func runAction(*cli.Context) {
|
|
logrus.Fatal("Current OS is not supported yet")
|
|
}
|