Add recent Linux kernel LPEs

This commit is contained in:
2026-05-21 23:22:06 -04:00
commit 49cc6bba60
5 changed files with 60 additions and 0 deletions

10
debian13-20260221.0/Vagrantfile vendored Normal file
View File

@@ -0,0 +1,10 @@
Vagrant.configure("2") do |config|
config.vm.box = "krislamo.org/debian13"
config.vm.box_version = "20260221.0"
config.vm.hostname = "debian13-20260221"
config.vm.synced_folder ".", "/vagrant", type: "rsync"
config.vm.provision "shell", inline: <<-SHELL
rm /etc/sudoers.d/vagrant || exit 1
passwd -l root || exit 1
SHELL
end