Blame internal/osbuild2/chrony_stage.go

Packit Service 15f37d
package osbuild2
Packit Service 15f37d
Packit Service 15f37d
type ChronyStageOptions struct {
Packit Service 15f37d
	Timeservers []string `json:"timeservers"`
Packit Service 15f37d
}
Packit Service 15f37d
Packit Service 15f37d
func (ChronyStageOptions) isStageOptions() {}
Packit Service 15f37d
Packit Service 15f37d
func NewChronyStage(options *ChronyStageOptions) *Stage {
Packit Service 15f37d
	return &Stage{
Packit Service 15f37d
		Type:    "org.osbuild.chrony",
Packit Service 15f37d
		Options: options,
Packit Service 15f37d
	}
Packit Service 15f37d
}