fleet/orbit/pkg/profiles/profiles.go
Roberto Dip af6d4059b9
Read enroll-secret and fleet-url from config profile on macOS (#10134)
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
2023-02-28 15:54:06 -03:00

8 lines
164 B
Go

package profiles
import "errors"
var (
ErrNotFound = errors.New("profile not found")
ErrNotImplemented = errors.New("not implemented on this platform")
)