jammy: add future ubuntu 22.04 jammy release

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-03-29 12:02:06 +02:00
parent a190e086dd
commit b0c99d8c9c

7
DAB.pm
View File

@ -216,6 +216,10 @@ my $supported_suites = {
ostype => "ubuntu-21.10",
origin => 'ubuntu',
},
'jammy' => {
ostype => "ubuntu-22.04",
origin => 'ubuntu',
},
};
sub get_suite_info {
@ -655,6 +659,9 @@ sub new {
if (lc($suiteinfo->{origin}) eq 'ubuntu' && $suiteinfo->{flags}->{systemd}) {
push @$incl, 'isc-dhcp-client';
push @$excl, qw(libmodule-build-perl);
if ($suite eq 'jammy') {
push @$excl, qw(fuse); # avoid fuse2 <-> fuse3 conflict
}
} elsif ($suite eq 'trusty') {
push @$excl, qw(systemd systemd-services libpam-systemd libsystemd-daemon0 memtest86+);
} elsif ($suite eq 'precise') {