]> git.proxmox.com Git - pve-container.git/commitdiff
allow fedora 29
authorDavid Limbeck <d.limbeck@proxmox.com>
Fri, 9 Nov 2018 12:53:30 +0000 (13:53 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 9 Nov 2018 13:23:57 +0000 (14:23 +0100)
tested start/stop of container as well as ipv4 and ipv6 static addresses

Signed-off-by: David Limbeck <d.limbeck@proxmox.com>
src/PVE/LXC/Setup/Fedora.pm

index 52623478614fa46c73b10a0e5b7648440b032b3c..ed2476b6f0f152f0eec5d726f8fda2882ed1c8aa 100644 (file)
@@ -11,7 +11,7 @@ sub new {
     my ($class, $conf, $rootdir, $os_release) = @_;
 
     my $version = $os_release->{VERSION_ID};
-    die "unsupported fedora release\n" if !($version >= 22 && $version <= 28);
+    die "unsupported fedora release\n" if !($version >= 22 && $version <= 29);
 
     my $self = { conf => $conf, rootdir => $rootdir, version => $version };