mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 04:55:31 +00:00
ipn/ipnlocal: move C2NUpdateResponse to c2ntypes.go (#9112)
Updates #cleanup Signed-off-by: Chris Palmer <cpalmer@tailscale.com>
This commit is contained in:
parent
d74c771fda
commit
346dc5f37e
@ -115,14 +115,7 @@ func (b *LocalBackend) handleC2NUpdate(w http.ResponseWriter, r *http.Request) {
|
||||
// TODO(bradfitz): add some sort of semaphore that prevents two concurrent
|
||||
// updates, or if one happened in the past 5 minutes, or something.
|
||||
|
||||
// TODO(bradfitz): move this type to some leaf package
|
||||
type updateResponse struct {
|
||||
Err string // error message, if any
|
||||
Enabled bool // user has opted-in to remote updates
|
||||
Supported bool // Tailscale supports updating this OS/platform
|
||||
Started bool
|
||||
}
|
||||
var res updateResponse
|
||||
var res tailcfg.C2NUpdateResponse
|
||||
res.Enabled = envknob.AllowsRemoteUpdate()
|
||||
res.Supported = runtime.GOOS == "windows" || (runtime.GOOS == "linux" && distro.Get() == distro.Debian)
|
||||
|
||||
|
@ -33,3 +33,22 @@ type C2NSSHUsernamesResponse struct {
|
||||
// just a best effort set of hints.
|
||||
Usernames []string
|
||||
}
|
||||
|
||||
// C2NUpdateResponse is the response (from node to control) from the /update
|
||||
// handler. It tells control the status of its request for the node to update
|
||||
// its Tailscale installation.
|
||||
type C2NUpdateResponse struct {
|
||||
// Err is the error message, if any.
|
||||
Err string
|
||||
|
||||
// Enabled indicates whether the user has opted in to updates triggered from
|
||||
// control.
|
||||
Enabled bool
|
||||
|
||||
// Supported indicates whether remote updates are supported on this
|
||||
// OS/platform.
|
||||
Supported bool
|
||||
|
||||
// Started indicates whether the update has started.
|
||||
Started bool
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user