From: Stoiko Ivanov Date: Mon, 6 May 2019 14:27:44 +0000 (+0200) Subject: raise supported fedora version to 30 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=4d7daa4e2f2e6d1ad8f4a95ae573bded512f4bf3;p=pve-container.git raise supported fedora version to 30 Tested by installing a fedora 29 container and upgrading it via dnf [0]. The upgraded container boots, but in order to get networking running (and many warnings and errors less in the journal) 'nesting' needs to be activated both for privileged and unprivileged containers. [0] https://fedoraproject.org/wiki/DNF_system_upgrade Signed-off-by: Stoiko Ivanov --- diff --git a/src/PVE/LXC/Setup/Fedora.pm b/src/PVE/LXC/Setup/Fedora.pm index ed2476b..b64dbe2 100644 --- a/src/PVE/LXC/Setup/Fedora.pm +++ b/src/PVE/LXC/Setup/Fedora.pm @@ -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 <= 29); + die "unsupported fedora release\n" if !($version >= 22 && $version <= 30); my $self = { conf => $conf, rootdir => $rootdir, version => $version };