Adjust Debian Edu list of packages.

tasks/bullseye/Debian-edu-full: Add LTSP setup related dnsmasq package.
tools/generate_debian-edu_task: No longer exclude Cinnamon desktop environment.

Signed-off-by: Wolfgang Schweer <wschweer@arcor.de>
This commit is contained in:
Wolfgang Schweer 2020-04-08 01:21:15 +02:00 committed by Holger Levsen
parent ab3039daaa
commit 772a0df3ea
2 changed files with 7 additions and 8 deletions

View File

@ -16,9 +16,9 @@
* patched debian-cd version (see #601203, message #20); also, some tweaking * patched debian-cd version (see #601203, message #20); also, some tweaking
* has been needed to work around problems (virtual packages, unavailable * has been needed to work around problems (virtual packages, unavailable
* recommended packages in task files) to be able to generate the BD image. * recommended packages in task files) to be able to generate the BD image.
* Please note: the libpam-krb5 and icinga2-ido-mysql packages had to be added * Please note: the libpam-krb5, dnsmasq and icinga2-ido-mysql packages had to
* manually because they are installed via scripts during system setup (as * be added manually because they are installed via scripts during system setup
* opposed to be installed automatically as Recommends). * (as opposed to be installed automatically as Recommends).
* Sort of cleaned up from already included packages and amd64 specific ones. * Sort of cleaned up from already included packages and amd64 specific ones.
* *
* Generated: 2020-03-27 * Generated: 2020-03-27
@ -321,6 +321,7 @@ dmraid-udeb
dmsetup dmsetup
dmsetup-udeb dmsetup-udeb
dns-root-data dns-root-data
dnsmasq
dnsutils dnsutils
docbook-xml docbook-xml
docbook-xsl docbook-xsl

View File

@ -53,11 +53,9 @@ open (INPKG, "\$BASEDIR/tools/catz $pkgfiles |") or die "Can't read input packag
$/ = ''; # Browse by paragraph $/ = ''; # Browse by paragraph
# Ignore a few tasks that we don't want, e.g. education-development, # Ignore a few tasks that we don't want, e.g. education-development,
# it's too big and pulls in all sorts of things that end users won't # it's too big and pulls in all sorts of things that most end users won't
# want/need, also ignore cinnamon desktop (no Debian Edu support). # want/need.
my @ignore_list = ('education-development', my @ignore_list = ('education-development', 'education-video');
'education-video',
'task-cinnamon-desktop');
while (defined($_ = <INPKG>)) { while (defined($_ = <INPKG>)) {
m/^Package: (\S+)/m and $pkg = $1; m/^Package: (\S+)/m and $pkg = $1;