mirror of
https://github.com/juanfont/headscale.git
synced 2025-04-15 00:35:39 -04:00
* fix issue auto approve route on register bug This commit fixes an issue where routes where not approved on a node during registration. This cause the auto approval to require the node to readvertise the routes. Fixes #2497 Fixes #2485 Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * hsic: only set db policy if exist Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * policy: calculate changed based on policy and filter v1 is a bit simpler than v2, it does not pre calculate the auto approver map and we cannot tell if it is changed. Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> --------- Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
30 lines
880 B
Go
30 lines
880 B
Go
package integration
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
|
policyv1 "github.com/juanfont/headscale/hscontrol/policy/v1"
|
|
"github.com/ory/dockertest/v3"
|
|
)
|
|
|
|
type ControlServer interface {
|
|
Shutdown() (string, string, error)
|
|
SaveLog(string) (string, string, error)
|
|
SaveProfile(string) error
|
|
Execute(command []string) (string, error)
|
|
WriteFile(path string, content []byte) error
|
|
ConnectToNetwork(network *dockertest.Network) error
|
|
GetHealthEndpoint() string
|
|
GetEndpoint() string
|
|
WaitForRunning() error
|
|
CreateUser(user string) error
|
|
CreateAuthKey(user string, reusable bool, ephemeral bool) (*v1.PreAuthKey, error)
|
|
ListNodes(users ...string) ([]*v1.Node, error)
|
|
ListUsers() ([]*v1.User, error)
|
|
ApproveRoutes(uint64, []netip.Prefix) (*v1.Node, error)
|
|
GetCert() []byte
|
|
GetHostname() string
|
|
SetPolicy(*policyv1.ACLPolicy) error
|
|
}
|