summaryrefslogtreecommitdiff
path: root/cmd/crioctl/info.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2017-11-01 11:29:12 -0400
committerMatthew Heon <matthew.heon@gmail.com>2017-11-01 11:51:10 -0400
commit637de4d0d3a4702fa37c1c9256f926dbbf6c05ae (patch)
tree11aeae9ce211d3c69429e4168d8b40cffdfe515b /cmd/crioctl/info.go
parenta031b83a09a8628435317a03f199cdc18b78262f (diff)
downloadpodman-637de4d0d3a4702fa37c1c9256f926dbbf6c05ae.tar.gz
podman-637de4d0d3a4702fa37c1c9256f926dbbf6c05ae.tar.bz2
podman-637de4d0d3a4702fa37c1c9256f926dbbf6c05ae.zip
Remove CRI-O binaries and makefile targets
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'cmd/crioctl/info.go')
-rw-r--r--cmd/crioctl/info.go31
1 files changed, 0 insertions, 31 deletions
diff --git a/cmd/crioctl/info.go b/cmd/crioctl/info.go
deleted file mode 100644
index 1f06f594a..000000000
--- a/cmd/crioctl/info.go
+++ /dev/null
@@ -1,31 +0,0 @@
-package main
-
-import (
- "encoding/json"
- "fmt"
-
- "github.com/kubernetes-incubator/cri-o/client"
- "github.com/urfave/cli"
-)
-
-var infoCommand = cli.Command{
- Name: "info",
- Usage: "get crio daemon info",
- Action: func(context *cli.Context) error {
- c, err := client.New(context.GlobalString("connect"))
- if err != nil {
- return err
- }
- di, err := c.DaemonInfo()
- if err != nil {
- return err
- }
-
- jsonBytes, err := json.MarshalIndent(di, "", " ")
- if err != nil {
- return err
- }
- fmt.Println(string(jsonBytes))
- return nil
- },
-}