]> git.proxmox.com Git - pve-container.git/commitdiff
support Fedora 36
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 27 Apr 2022 12:22:46 +0000 (14:22 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 27 Apr 2022 12:22:46 +0000 (14:22 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/PVE/LXC/Setup/Fedora.pm

index 5e7a665d52fac8f7e41ae706ebe8000e045e72ee..250d1a9d792810448c7deb5d72e526bfb051c83a 100644 (file)
@@ -11,7 +11,7 @@ sub new {
     my ($class, $conf, $rootdir, $os_release) = @_;
 
     my $version = $os_release->{VERSION_ID};
-    die "unsupported Fedora release '$version'\n" if !($version >= 22 && $version <= 35);
+    die "unsupported Fedora release '$version'\n" if !($version >= 22 && $version <= 36);
 
     my $self = { conf => $conf, rootdir => $rootdir, version => $version };