mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 13:05:46 +00:00
675f9cd199
Updates #3157 Change-Id: I97a4962a44bd36313ff68388e3de0d852a8fa869 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
35 lines
825 B
Go
35 lines
825 B
Go
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cli
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/peterbourgon/ff/v3/ffcli"
|
|
"tailscale.com/client/tailscale"
|
|
)
|
|
|
|
var logoutCmd = &ffcli.Command{
|
|
Name: "logout",
|
|
ShortUsage: "logout [flags]",
|
|
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 tailscale.Logout(ctx)
|
|
}
|