distro/rhel85: introduce the vmdk image type

This commit is contained in:
Achilleas Koutsou 2021-07-07 19:29:36 +02:00 committed by Ondřej Budai
parent 2ef462bdaa
commit ceba83dcca
5 changed files with 81 additions and 2 deletions

View file

@ -171,6 +171,19 @@ func vhdCommonPackageSet() rpmmd.PackageSet {
}
}
func vmdkCommonPackageSet() rpmmd.PackageSet {
return rpmmd.PackageSet{
Include: []string{
"@core", "chrony", "firewalld", "langpacks-en", "open-vm-tools",
"selinux-policy-targeted",
},
Exclude: []string{
"dracut-config-rescue", "rng-tools",
},
}
}
// edge commit OS package set
func edgeCommitCommonPackageSet() rpmmd.PackageSet {
return rpmmd.PackageSet{