Proxmox 8.4.12 and Debian 13.1 LXC containers

reinob

New Member
Mar 20, 2025
26
14
3
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

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..
 
Hello,
I am new to this forum and would like to contribute something right away.

Changing the value from $version <= 13 to $version <= 14 also solved the problem for me.

Thanks to reinob.
 
  • Like
Reactions: reinob
Applied the fix also but, restore a Backup did still not working in proxmox 8.4.12 with Non production-ready repository enabled!
 
There is a new version of pve-container (5.3.1) where the test is for debian version < 15, which should be OK for a while ;)

from changelog
Code:
setup: debian: increase upper supported version limit from <= 13 to < 15
to ensure all points releases of Debian 13 and future Debian 14 get
accepted.