mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Fixes #26693 Added functionality to verify that the escrowed LUKS disk encryption key is valid. To achieve this, two new fleetd tables were added: lsblk and cryptsetup_luks_salt/table to compare the stored encryption key with the ones present on the host.
19 lines
400 B
Go
19 lines
400 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package luks
|
|
|
|
import (
|
|
"context"
|
|
"github.com/fleetdm/fleet/v4/server/fleet"
|
|
)
|
|
|
|
// Run is a placeholder method for non-Linux builds.
|
|
func (lr *LuksRunner) Run(oc *fleet.OrbitConfig) error {
|
|
return nil
|
|
}
|
|
|
|
// GetLuksDump is a placeholder method for non-Linux builds.
|
|
func GetLuksDump(ctx context.Context, devicePath string) (*LuksDump, error) {
|
|
return nil, nil
|
|
}
|