mirror of
https://github.com/krislamo/kernmod.git
synced 2024-11-10 00:30:36 +00:00
7 lines
219 B
Ruby
7 lines
219 B
Ruby
Vagrant.configure("2") do |config|
|
|
config.vm.box = "debian/bullseye64"
|
|
config.vm.synced_folder ".", "/vagrant"
|
|
config.vm.network "private_network", type: "dhcp"
|
|
config.vm.provision "shell", path: "build.sh"
|
|
end
|