tailscale: disable self-updater

this doesn't do anything on void atm but better to be safe than sorry.
hopefully this gets made disableable in the future.
This commit is contained in:
classabbyamp 2023-08-21 17:44:27 -04:00
parent e87825441e
commit 60610c8b10
No known key found for this signature in database
GPG key ID: 6BE0755918A4C7F5
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,11 @@
--- a/cmd/tailscale/cli/cli.go
+++ b/cmd/tailscale/cli/cli.go
@@ -149,8 +149,6 @@
switch {
case slices.Contains(args, "debug"):
rootCmd.Subcommands = append(rootCmd.Subcommands, debugCmd)
- case slices.Contains(args, "update"):
- rootCmd.Subcommands = append(rootCmd.Subcommands, updateCmd)
}
if runtime.GOOS == "linux" && distro.Get() == distro.Synology {
rootCmd.Subcommands = append(rootCmd.Subcommands, configureHostCmd)

View file

@ -1,7 +1,7 @@
# Template file for 'tailscale'
pkgname=tailscale
version=1.46.0
revision=1
revision=2
build_style=go
go_import_path="tailscale.com"
go_package="tailscale.com/cmd/tailscale tailscale.com/cmd/tailscaled"