mirror of
https://github.com/fleetdm/fleet
synced 2026-04-27 00:17:21 +00:00
#1845 Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com> Co-authored-by: Roberto Dip <rroperzh@gmail.com>
14 lines
318 B
Go
14 lines
318 B
Go
package update
|
|
|
|
import (
|
|
"github.com/theupdateframework/go-tuf/client"
|
|
)
|
|
|
|
var defaultOptions = Options{
|
|
RootDirectory: "/opt/orbit",
|
|
ServerURL: defaultURL,
|
|
RootKeys: defaultRootKeys,
|
|
LocalStore: client.MemoryLocalStore(),
|
|
InsecureTransport: false,
|
|
Targets: LinuxTargets,
|
|
}
|