mirror of
https://github.com/tailscale/tailscale.git
synced 2025-06-09 17:28:35 +00:00

Updates #3157 Change-Id: I97a4962a44bd36313ff68388e3de0d852a8fa869 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
45 lines
954 B
Go
45 lines
954 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"
|
|
|
|
"github.com/peterbourgon/ff/v3/ffcli"
|
|
"tailscale.com/client/tailscale"
|
|
"tailscale.com/ipn"
|
|
)
|
|
|
|
var downCmd = &ffcli.Command{
|
|
Name: "down",
|
|
ShortUsage: "down",
|
|
ShortHelp: "Disconnect from Tailscale",
|
|
|
|
Exec: runDown,
|
|
}
|
|
|
|
func runDown(ctx context.Context, args []string) error {
|
|
if len(args) > 0 {
|
|
return fmt.Errorf("too many non-flag arguments: %q", args)
|
|
}
|
|
|
|
st, err := tailscale.Status(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("error fetching current status: %w", err)
|
|
}
|
|
if st.BackendState == "Stopped" {
|
|
fmt.Fprintf(Stderr, "Tailscale was already stopped.\n")
|
|
return nil
|
|
}
|
|
_, err = tailscale.EditPrefs(ctx, &ipn.MaskedPrefs{
|
|
Prefs: ipn.Prefs{
|
|
WantRunning: false,
|
|
},
|
|
WantRunningSet: true,
|
|
})
|
|
return err
|
|
}
|