mirror of
https://github.com/fleetdm/fleet
synced 2026-04-30 18:07:56 +00:00
This allows orbit to read enroll-secret and fleet-url from a configuration profile if both values are not set when the package is built. Part of https://github.com/fleetdm/fleet/issues/9459
8 lines
164 B
Go
8 lines
164 B
Go
package profiles
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("profile not found")
|
|
ErrNotImplemented = errors.New("not implemented on this platform")
|
|
)
|