Mark the machine as unregistered before soft delete

This commit is contained in:
Juan Font Alonso 2021-07-17 11:12:24 +02:00
parent 0f649aae8b
commit 96b4d2f391

View file

@ -199,6 +199,8 @@ func (h *Headscale) GetMachineByID(id uint64) (*Machine, error) {
// DeleteMachine softs deletes a Machine from the database
func (h *Headscale) DeleteMachine(m *Machine) error {
m.Registered = false
h.db.Save(&m) // we mark it as unregistered, just in case
if err := h.db.Delete(&m).Error; err != nil {
return err
}