envknob/featureknob: allow use of exit node on unraid (#14754)

Fixes #14372

Signed-off-by: Derek Kaser <11674153+dkaser@users.noreply.github.com>
This commit is contained in:
Derek Kaser 2025-01-26 10:35:58 -05:00 committed by GitHub
parent 68a66ee81b
commit 66b2e9fd07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,8 +55,7 @@ func CanRunTailscaleSSH() error {
func CanUseExitNode() error {
switch dist := distro.Get(); dist {
case distro.Synology, // see https://github.com/tailscale/tailscale/issues/1995
distro.QNAP,
distro.Unraid:
distro.QNAP:
return errors.New("Tailscale exit nodes cannot be used on " + string(dist))
}