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:
parent
ab3039daaa
commit
772a0df3ea
|
@ -16,9 +16,9 @@
|
|||
* patched debian-cd version (see #601203, message #20); also, some tweaking
|
||||
* has been needed to work around problems (virtual packages, unavailable
|
||||
* 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
|
||||
* manually because they are installed via scripts during system setup (as
|
||||
* opposed to be installed automatically as Recommends).
|
||||
* Please note: the libpam-krb5, dnsmasq and icinga2-ido-mysql packages had to
|
||||
* be added manually because they are installed via scripts during system setup
|
||||
* (as opposed to be installed automatically as Recommends).
|
||||
* Sort of cleaned up from already included packages and amd64 specific ones.
|
||||
*
|
||||
* Generated: 2020-03-27
|
||||
|
@ -321,6 +321,7 @@ dmraid-udeb
|
|||
dmsetup
|
||||
dmsetup-udeb
|
||||
dns-root-data
|
||||
dnsmasq
|
||||
dnsutils
|
||||
docbook-xml
|
||||
docbook-xsl
|
||||
|
|
|
@ -53,11 +53,9 @@ open (INPKG, "\$BASEDIR/tools/catz $pkgfiles |") or die "Can't read input packag
|
|||
$/ = ''; # Browse by paragraph
|
||||
|
||||
# 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
|
||||
# want/need, also ignore cinnamon desktop (no Debian Edu support).
|
||||
my @ignore_list = ('education-development',
|
||||
'education-video',
|
||||
'task-cinnamon-desktop');
|
||||
# it's too big and pulls in all sorts of things that most end users won't
|
||||
# want/need.
|
||||
my @ignore_list = ('education-development', 'education-video');
|
||||
|
||||
while (defined($_ = <INPKG>)) {
|
||||
m/^Package: (\S+)/m and $pkg = $1;
|
||||
|
|
Loading…
Reference in New Issue