manifest/build: pull in tar implicitly

The tar pipeline requires tar, let only that pull it in.
This commit is contained in:
Tom Gundersen 2022-07-07 19:29:08 +01:00
parent fed620b861
commit b714dcb780
3 changed files with 8 additions and 1 deletions

View file

@ -43,7 +43,6 @@ func (p *BuildPipeline) getPackageSetChain() []rpmmd.PackageSet {
"selinux-policy-targeted",
"coreutils",
"systemd",
"tar",
"xz",
}

View file

@ -55,3 +55,7 @@ func (p *OCIContainerPipeline) serialize() osbuild2.Pipeline {
return pipeline
}
func (p *OCIContainerPipeline) getBuildPackages() []string {
return []string{"tar"}
}

View file

@ -45,3 +45,7 @@ func (p *TarPipeline) serialize() osbuild2.Pipeline {
return pipeline
}
func (p *TarPipeline) getBuildPackages() []string {
return []string{"tar"}
}