This has been available since v0.74.0 of osbuild/images but was never connected to the frontend blueprint. See https://github.com/osbuild/images/pull/799
17 lines
661 B
Go
17 lines
661 B
Go
package blueprint
|
|
|
|
type InstallerCustomization struct {
|
|
Unattended bool `json:"unattended,omitempty" toml:"unattended,omitempty"`
|
|
SudoNopasswd []string `json:"sudo-nopasswd,omitempty" toml:"sudo-nopasswd,omitempty"`
|
|
Kickstart *Kickstart `json:"kickstart,omitempty" toml:"kickstart,omitempty"`
|
|
Modules *AnacondaModules `json:"modules,omitempty" toml:"modules,omitempty"`
|
|
}
|
|
|
|
type Kickstart struct {
|
|
Contents string `json:"contents" toml:"contents"`
|
|
}
|
|
|
|
type AnacondaModules struct {
|
|
Enable []string `json:"enable,omitempty" toml:"enable,omitempty"`
|
|
Disable []string `json:"disable,omitempty" toml:"disable,omitempty"`
|
|
}
|