1
0
mirror of https://github.com/rancher/os.git synced 2025-07-02 01:31:48 +00:00
os/vendor/github.com/opencontainers/runc/main_unsupported.go
2015-12-07 18:17:57 +05:00

25 lines
393 B
Go

// +build !linux
package main
import (
"github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
)
func getDefaultID() string {
return ""
}
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")
}