]> git.proxmox.com Git - dab.git/commitdiff
jammy: add future ubuntu 22.04 jammy release
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 29 Mar 2022 10:02:06 +0000 (12:02 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 29 Mar 2022 12:12:43 +0000 (14:12 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
DAB.pm

diff --git a/DAB.pm b/DAB.pm
index 4f54e4f01260fdbc79cefb840c622543576aedb9..ac1dadbdbea767907be0877a9bb2ea0798abe3b7 100644 (file)
--- a/DAB.pm
+++ b/DAB.pm
@@ -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') {