Vagrantfile 409 B

12345678910111213141516
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. Vagrant.configure("2") do |config|
  4. config.vm.box = "ubuntu/jammy64"
  5. config.vm.synced_folder "../build", "/nebula"
  6. config.vm.provision :shell do |shell|
  7. shell.inline = <<-EOF
  8. sed -i 's/GRUB_CMDLINE_LINUX=""/GRUB_CMDLINE_LINUX="ipv6.disable=1"/' /etc/default/grub
  9. update-grub
  10. EOF
  11. shell.privileged = true
  12. shell.reboot = true
  13. end
  14. end