Blame internal/osbuild2/anaconda_stage.go

Packit Service 15f37d
package osbuild2
Packit Service 15f37d
Packit Service 15f37d
type AnacondaStageOptions struct {
Packit Service 15f37d
	// Kickstart modules to enable
Packit Service 15f37d
	KickstartModules []string `json:"kickstart-modules"`
Packit Service 15f37d
}
Packit Service 15f37d
Packit Service 15f37d
func (AnacondaStageOptions) isStageOptions() {}
Packit Service 15f37d
Packit Service 15f37d
// Configure basic aspects of the Anaconda installer
Packit Service 15f37d
func NewAnacondaStage(options *AnacondaStageOptions) *Stage {
Packit Service 15f37d
	return &Stage{
Packit Service 15f37d
		Type:    "org.osbuild.anaconda",
Packit Service 15f37d
		Options: options,
Packit Service 15f37d
	}
Packit Service 15f37d
}