From 8452d273e35a4a1c56f8fa90bdba8a73bb4a208c Mon Sep 17 00:00:00 2001 From: Craig Rodrigues Date: Thu, 7 Sep 2023 07:15:13 -0700 Subject: [PATCH] util/linuxfw: Fix comment which lists supported linux arches Only arm64 and amd64 are supported Signed-off-by: Craig Rodrigues --- util/linuxfw/linuxfw_unsupported.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/linuxfw/linuxfw_unsupported.go b/util/linuxfw/linuxfw_unsupported.go index 38a638d87..4c6029af1 100644 --- a/util/linuxfw/linuxfw_unsupported.go +++ b/util/linuxfw/linuxfw_unsupported.go @@ -1,7 +1,7 @@ // Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause -// NOTE: linux_{arm64, x86} are the only two currently supported archs due to missing +// NOTE: linux_{arm64, amd64} are the only two currently supported archs due to missing // support in upstream dependencies. // TODO(#8502): add support for more architectures