2015-06-30 07:49:13 +08:00
|
|
|
// +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
|
2015-07-03 00:59:30 +08:00
|
|
|
specCommand cli.Command
|
2015-08-05 01:45:31 +08:00
|
|
|
killCommand cli.Command
|
2015-06-30 07:49:13 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func runAction(*cli.Context) {
|
|
|
|
logrus.Fatal("Current OS is not supported yet")
|
|
|
|
}
|