exclude a bunch of desktops from the full edu image

Signed-off-by: Holger Levsen <holger@layer-acht.org>
This commit is contained in:
Holger Levsen 2018-07-31 15:50:42 +08:00
parent f78c2e9d49
commit fa9bf61204
1 changed files with 9 additions and 1 deletions

View File

@ -65,7 +65,15 @@ while (defined($_ = <INPKG>)) {
# sorts of things that end users won't want/need
if ($pkg =~ /^education-development/) {
next;
}
elsif ($pkg =~ /^education-desktop-gnome/) {
next;
elsif ($pkg =~ /^education-desktop-kde/) {
next;
elsif ($pkg =~ /^education-desktop-lxde/) {
next;
elsif ($pkg =~ /^education-desktop-other/) {
next;
}
print OUT "$pkg\n";
}