manifest/build: move out qemu-img

Let each pipeline that requires it pull in qemu-img.
This commit is contained in:
Tom Gundersen 2022-07-07 00:32:05 +01:00
parent 2c2d4812d4
commit 9160319152
4 changed files with 12 additions and 1 deletions

View file

@ -43,7 +43,6 @@ func (p *BuildPipeline) getPackageSetChain() []rpmmd.PackageSet {
"dosfstools",
"e2fsprogs",
"policycoreutils",
"qemu-img",
"selinux-policy-targeted",
"systemd",
"tar",

View file

@ -47,3 +47,7 @@ func (p *QCOW2Pipeline) serialize() osbuild2.Pipeline {
return pipeline
}
func (p *QCOW2Pipeline) getBuildPackages() []string {
return []string{"qemu-img"}
}

View file

@ -43,3 +43,7 @@ func (p *VMDKPipeline) serialize() osbuild2.Pipeline {
return pipeline
}
func (p *VMDKPipeline) getBuildPackages() []string {
return []string{"qemu-img"}
}

View file

@ -42,3 +42,7 @@ func (p *VPCPipeline) serialize() osbuild2.Pipeline {
return pipeline
}
func (p *VPCPipeline) getBuildPackages() []string {
return []string{"qemu-img"}
}