mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-03 14:55:47 +00:00

Also capitalises the start of all ShortHelp, allows subcommands to be hidden with a "HIDDEN: " prefix in their ShortHelp, and adds a TS_DUMP_HELP envknob to look at all --help messages together. Fixes #11664 Signed-off-by: Paul Scott <paul@tailscale.com>
33 lines
706 B
Go
33 lines
706 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package cli
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/peterbourgon/ff/v3/ffcli"
|
|
)
|
|
|
|
var logoutCmd = &ffcli.Command{
|
|
Name: "logout",
|
|
ShortUsage: "tailscale logout",
|
|
ShortHelp: "Disconnect from Tailscale and expire current node key",
|
|
|
|
LongHelp: strings.TrimSpace(`
|
|
"tailscale logout" brings the network down and invalidates
|
|
the current node key, forcing a future use of it to cause
|
|
a reauthentication.
|
|
`),
|
|
Exec: runLogout,
|
|
}
|
|
|
|
func runLogout(ctx context.Context, args []string) error {
|
|
if len(args) > 0 {
|
|
return fmt.Errorf("too many non-flag arguments: %q", args)
|
|
}
|
|
return localClient.Logout(ctx)
|
|
}
|