Blame internal/osbuild2/timezone_stage.go

Packit Service 15f37d
package osbuild2
Packit Service 15f37d
Packit Service 15f37d
type TimezoneStageOptions struct {
Packit Service 15f37d
	Zone string `json:"zone"`
Packit Service 15f37d
}
Packit Service 15f37d
Packit Service 15f37d
func (TimezoneStageOptions) isStageOptions() {}
Packit Service 15f37d
Packit Service 15f37d
func NewTimezoneStage(options *TimezoneStageOptions) *Stage {
Packit Service 15f37d
	return &Stage{
Packit Service 15f37d
		Type:    "org.osbuild.timezone",
Packit Service 15f37d
		Options: options,
Packit Service 15f37d
	}
Packit Service 15f37d
}