mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
044e298507
The error handling on the runc cli is currenly pretty messy because messages to the user are split between regular stderr format and logrus message format. This changes all the error reporting to the cli to only output on stderr and exit(1) for consumers of the api. By default logrus logs to /dev/null so that it is not seen by the user. If the user wants extra and/or structured loggging/errors from runc they can use the `--log` flag to provide a path to the file where they want this information. This allows a consistent behavior on the cli but extra power and information when debugging with logs. This also includes a change to enable the same logging information inside the container's init by adding an init cli command that can share the existing flags for all other runc commands. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
18 lines
309 B
Go
18 lines
309 B
Go
// +build !linux
|
|
|
|
package main
|
|
|
|
import "github.com/codegangsta/cli"
|
|
|
|
var (
|
|
checkpointCommand cli.Command
|
|
eventsCommand cli.Command
|
|
restoreCommand cli.Command
|
|
specCommand cli.Command
|
|
killCommand cli.Command
|
|
)
|
|
|
|
func runAction(*cli.Context) {
|
|
fatalf("Current OS is not supported yet")
|
|
}
|