Files
vulnlab/debian13-20260221.0/Vagrantfile

11 lines
345 B
Ruby

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