mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8324d7918b
Continues 11858 by: - Making sure the exit code is always zero when we ask for help - Making sure the exit code isn't zero when we print help on error cases - Making sure both short and long usage go to the same stream (stdout vs stderr) - Making sure all docker commands support --help - Test that all cmds send --help to stdout, exit code 0, show full usage, no blank lines at end - Test that all cmds (that support it) show short usage on bad arg to stderr, no blank line at end - Test that all cmds complain about a bad option, no blank line at end - Test that docker (w/o subcmd) does the same stuff mentioned above properly Signed-off-by: Doug Davis <dug@us.ibm.com>
36 lines
1 KiB
Go
36 lines
1 KiB
Go
package client
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
"github.com/docker/docker/registry"
|
|
)
|
|
|
|
// CmdLogout logs a user out from a Docker registry.
|
|
//
|
|
// If no server is specified, the user will be logged out from the registry's index server.
|
|
//
|
|
// Usage: docker logout [SERVER]
|
|
func (cli *DockerCli) CmdLogout(args ...string) error {
|
|
cmd := cli.Subcmd("logout", "[SERVER]", "Log out from a Docker registry, if no server is\nspecified \""+registry.IndexServerAddress()+"\" is the default.", true)
|
|
cmd.Require(flag.Max, 1)
|
|
|
|
cmd.ParseFlags(args, true)
|
|
serverAddress := registry.IndexServerAddress()
|
|
if len(cmd.Args()) > 0 {
|
|
serverAddress = cmd.Arg(0)
|
|
}
|
|
|
|
if _, ok := cli.configFile.AuthConfigs[serverAddress]; !ok {
|
|
fmt.Fprintf(cli.out, "Not logged in to %s\n", serverAddress)
|
|
} else {
|
|
fmt.Fprintf(cli.out, "Remove login credentials for %s\n", serverAddress)
|
|
delete(cli.configFile.AuthConfigs, serverAddress)
|
|
|
|
if err := cli.configFile.Save(); err != nil {
|
|
return fmt.Errorf("Failed to save docker config: %v", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|