1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-12-24 01:05:58 +00:00

Run unwanted_packages on KDE, they don't want gtk2 (#425)

This enables the unwanted_packages test we set up for Workstation
a while ago on KDE as well. They want to ensure gtk2 isn't on
KDE installs.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2025-09-05 14:49:34 -07:00
parent c9f73ec073
commit 557c2cd781
2 changed files with 4 additions and 0 deletions

View File

@ -2551,6 +2551,7 @@
},
"unwanted_packages": {
"profile_groups": {
"kde-all": 40,
"workstation-all": 40
},
"settings": {

View File

@ -12,6 +12,9 @@ sub run {
if ($subv eq "Workstation") {
@unwanteds = ("gtk2", "qt");
}
elsif ($subv eq "KDE") {
@unwanteds = ("gtk2");
}
for my $unwanted (@unwanteds) {
assert_script_run "! rpm -q $unwanted";
}