mirror of
https://github.com/juanfont/headscale.git
synced 2025-08-10 13:46:46 +02:00
integration: add new ssh policy rejection
tailscale/tailscale#16127 added a new rejection message that we need to handle. Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
524991d25d
commit
947a466cea
@ -17,7 +17,9 @@ import (
|
|||||||
func isSSHNoAccessStdError(stderr string) bool {
|
func isSSHNoAccessStdError(stderr string) bool {
|
||||||
return strings.Contains(stderr, "Permission denied (tailscale)") ||
|
return strings.Contains(stderr, "Permission denied (tailscale)") ||
|
||||||
// Since https://github.com/tailscale/tailscale/pull/14853
|
// Since https://github.com/tailscale/tailscale/pull/14853
|
||||||
strings.Contains(stderr, "failed to evaluate SSH policy")
|
strings.Contains(stderr, "failed to evaluate SSH policy") ||
|
||||||
|
// Since https://github.com/tailscale/tailscale/pull/16127
|
||||||
|
strings.Contains(stderr, "tailnet policy does not permit you to SSH to this node")
|
||||||
}
|
}
|
||||||
|
|
||||||
var retry = func(times int, sleepInterval time.Duration,
|
var retry = func(times int, sleepInterval time.Duration,
|
||||||
|
Loading…
Reference in New Issue
Block a user