45 lines
2.0 KiB
Diff
45 lines
2.0 KiB
Diff
don't let tailscale update itself manually or automatically, as users should do
|
|
that through XBPS at their choice. Also disable update check by default.
|
|
|
|
--- a/cmd/tailscale/cli/cli.go
|
|
+++ b/cmd/tailscale/cli/cli.go
|
|
@@ -130,7 +130,6 @@
|
|
netlockCmd,
|
|
licensesCmd,
|
|
exitNodeCmd,
|
|
- updateCmd,
|
|
whoisCmd,
|
|
},
|
|
FlagSet: rootfs,
|
|
--- a/cmd/tailscale/cli/set.go
|
|
+++ b/cmd/tailscale/cli/set.go
|
|
@@ -13,7 +13,6 @@
|
|
|
|
"github.com/peterbourgon/ff/v3/ffcli"
|
|
"tailscale.com/client/web"
|
|
- "tailscale.com/clientupdate"
|
|
"tailscale.com/ipn"
|
|
"tailscale.com/net/netutil"
|
|
"tailscale.com/net/tsaddr"
|
|
@@ -67,8 +67,7 @@
|
|
setf.StringVar(&setArgs.advertiseRoutes, "advertise-routes", "", "routes to advertise to other nodes (comma-separated, e.g. \"10.0.0.0/8,192.168.0.0/24\") or empty string to not advertise routes")
|
|
setf.BoolVar(&setArgs.advertiseDefaultRoute, "advertise-exit-node", false, "offer to be an exit node for internet traffic for the tailnet")
|
|
setf.BoolVar(&setArgs.advertiseConnector, "advertise-connector", false, "offer to be an app connector for domain specific internet traffic for the tailnet")
|
|
- setf.BoolVar(&setArgs.updateCheck, "update-check", true, "notify about available Tailscale updates")
|
|
- setf.BoolVar(&setArgs.updateApply, "auto-update", false, "automatically update to the latest available version")
|
|
+ setf.BoolVar(&setArgs.updateCheck, "update-check", false, "notify about available Tailscale updates")
|
|
setf.BoolVar(&setArgs.postureChecking, "posture-checking", false, "HIDDEN: allow management plane to gather device posture information")
|
|
setf.BoolVar(&setArgs.runWebClient, "webclient", false, "run a web interface for managing this node, served over Tailscale at port 5252")
|
|
|
|
@@ -171,9 +170,7 @@
|
|
return fmt.Errorf("failed to enable automatic updates: %v, %q", err, out)
|
|
}
|
|
} else {
|
|
- if !clientupdate.CanAutoUpdate() {
|
|
- return errors.New("automatic updates are not supported on this platform")
|
|
- }
|
|
+ return errors.New("automatic updates are not supported on this platform")
|
|
}
|
|
}
|
|
checkPrefs := curPrefs.Clone()
|