2015-06-30 07:49:13 +08:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2016-03-09 10:05:50 +08:00
|
|
|
import "github.com/codegangsta/cli"
|
2015-06-30 07:49:13 +08:00
|
|
|
|
|
|
|
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) {
|
2016-03-09 10:05:50 +08:00
|
|
|
fatalf("Current OS is not supported yet")
|
2015-06-30 07:49:13 +08:00
|
|
|
}
|