mirror of
https://github.com/slackhq/nebula.git
synced 2025-01-11 11:58:11 +00:00
4f4941e187
* WIP smoke test freebsd * fix bitrot We now test that the firewall blocks inbound on host3 from host2 * WIP ipv6 test * cleanup * rename to make clear * fix filename * restore * no sudo docker * WIP * WIP * WIP * WIP * extra smoke tests * WIP * WIP * add over improvements made in smoke.sh * more tests * use generic/freebsd14 * cleanup from test * smoke test openbsd-amd64 * add netbsd-amd64 * try to fix vagrant
16 lines
409 B
Ruby
16 lines
409 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "ubuntu/jammy64"
|
|
|
|
config.vm.synced_folder "../build", "/nebula"
|
|
|
|
config.vm.provision :shell do |shell|
|
|
shell.inline = <<-EOF
|
|
sed -i 's/GRUB_CMDLINE_LINUX=""/GRUB_CMDLINE_LINUX="ipv6.disable=1"/' /etc/default/grub
|
|
update-grub
|
|
EOF
|
|
shell.privileged = true
|
|
shell.reboot = true
|
|
end
|
|
end
|