Changes with 0.178.0 ---------------- - Update osbuild dependency commit ID to latest (osbuild/images#1763) - Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger - many: drop `ISORootKickstart` (osbuild/images#1769) - Author: Simon de Vlieger, Reviewers: Brian C. Lane, Tomáš Hozza - many: drop the workload.Workload type entirely (osbuild/images#1770) - Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza - platform: drop hardcoded platforms and rename PlatformConf (osbuild/images#1739) - Author: Michael Vogt, Reviewers: Brian C. Lane, Simon de Vlieger - rhel: fix openscap profile allowlists (HMS-9095) (osbuild/images#1778) - Author: Sanne Raymaekers, Reviewers: Michael Vogt, Simon de Vlieger — Somewhere on the Internet, 2025-08-21
27 lines
592 B
Go
27 lines
592 B
Go
package manifest
|
|
|
|
// Contains all configuration applied to installer type images such as
|
|
// Anaconda or CoreOS installer ones.
|
|
type InstallerCustomizations struct {
|
|
FIPS bool
|
|
|
|
AdditionalKernelOpts []string
|
|
|
|
EnabledAnacondaModules []string
|
|
DisabledAnacondaModules []string
|
|
|
|
AdditionalDracutModules []string
|
|
AdditionalDrivers []string
|
|
|
|
// Uses the old, deprecated, Anaconda config option "kickstart-modules".
|
|
// Only for RHEL 8.
|
|
UseLegacyAnacondaConfig bool
|
|
|
|
// Temporary
|
|
UseRHELLoraxTemplates bool
|
|
|
|
ISORootfsType ISORootfsType
|
|
ISOBoot ISOBootType
|
|
|
|
DefaultMenu int
|
|
}
|