mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
#1845 Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com> Co-authored-by: Roberto Dip <rroperzh@gmail.com>
14 lines
323 B
Go
14 lines
323 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: LinuxArm64Targets,
|
|
}
|