manifest: rename ISOTree to AnacondaISOTree

The ISOTree struct and pipeline generator is specific to Anaconda.
Rename it for clarity and to differentiate from any other ISO tree
pipeline.
This commit is contained in:
Achilleas Koutsou 2022-11-25 20:15:24 +01:00 committed by Tom Gundersen
parent 3d1f283dab
commit fae824d574
3 changed files with 10 additions and 10 deletions

View file

@ -123,7 +123,7 @@ func (img *ImageInstaller) InstantiateManifest(m *manifest.Manifest,
osPipeline.Environment = img.Environment
osPipeline.Workload = img.Workload
isoTreePipeline := manifest.NewISOTree(m,
isoTreePipeline := manifest.NewAnacondaISOTree(m,
buildPipeline,
anacondaPipeline,
rootfsImagePipeline,

View file

@ -92,7 +92,7 @@ func (img *OSTreeInstaller) InstantiateManifest(m *manifest.Manifest,
bootTreePipeline.KSPath = kspath
bootTreePipeline.ISOLabel = isoLabel
isoTreePipeline := manifest.NewISOTree(m,
isoTreePipeline := manifest.NewAnacondaISOTree(m,
buildPipeline,
anacondaPipeline,
rootfsImagePipeline,