Merge pull request #710 from mlaventure/fix-dist-socket-arg

Fix dist socket parameter
This commit is contained in:
Michael Crosby 2017-04-10 10:20:17 -07:00 committed by GitHub
commit bb9f908cdf
2 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ containerd client
Usage: "enable debug output in logs",
},
cli.StringFlag{
Name: "address, s",
Name: "address, a",
Usage: "address for containerd's GRPC server",
Value: "/run/containerd/containerd.sock",
},

6
cmd/dist/main.go vendored
View File

@ -30,7 +30,7 @@ func main() {
____/ (_)____/ /_
/ __ / / ___/ __/
/ /_/ / (__ ) /_
\__,_/_/____/\__/
\__,_/_/____/\__/
distribution tool
`
@ -55,8 +55,8 @@ distribution tool
Value: "/var/lib/containerd",
},
cli.StringFlag{
Name: "socket, s",
Usage: "socket path for containerd's GRPC server",
Name: "address, a",
Usage: "address for containerd's GRPC server",
Value: "/run/containerd/containerd.sock",
},
}