1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00

Use valid handler for registered authkey machines

This commit is contained in:
Kristoffer Dalby 2021-11-18 08:50:53 +00:00
parent a8a8f01429
commit 50dcb8bb75

11
api.go
View File

@ -130,8 +130,15 @@ func (h *Headscale) RegistrationHandler(ctx *gin.Context) {
return
}
if machine.Registered && machine.Expiry.UTC().After(now) {
h.handleMachineValidRegistration(ctx, machineKey, req, *machine)
// We dont care about expiry time if the method is AuthKey, as we dont set that.
if machine.Registered && machine.RegisterMethod == RegisterMethodAuthKey {
h.handleMachineValidRegistration(ctx, machineKey, *machine)
return
}
if machine.Registered && !machine.isExpired() {
h.handleMachineValidRegistration(ctx, machineKey, *machine)
return
}