Today debian trixie got an update 13.0 → 13.1.
My updated LXC containers stopped starting.
I had to edit /usr/share/perl5/PVE/LXC/Setup/Debian.pm, which had
to
So just in case other people are wondering what's up.
In general, I would prefer if Proxmox didn't allow container startup to "die" unless there is a very good/real reason..
My updated LXC containers stopped starting.
I had to edit /usr/share/perl5/PVE/LXC/Setup/Debian.pm, which had
Code:
die "unsupported debian version '$version'\n" if !($version >= 4 && $version <= 13);
to
Code:
die "unsupported debian version '$version'\n" if !($version >= 4 && $version <= 14);
So just in case other people are wondering what's up.
In general, I would prefer if Proxmox didn't allow container startup to "die" unless there is a very good/real reason..