Skip to content

Instantly share code, notes, and snippets.

@agowa
Created July 7, 2019 22:09
Show Gist options
  • Save agowa/1fedf8e712879a5b67c36cc550671193 to your computer and use it in GitHub Desktop.
Save agowa/1fedf8e712879a5b67c36cc550671193 to your computer and use it in GitHub Desktop.
Vagrant.configure('2') do |config|
config.vm.box_check_update = false
config.vm.box = "archlinux/archlinux"
config.vm.synced_folder './', '/vagrant', type: 'nfs'
#Configure NAT64
config.vm.define "nat64" do |nat64|
nat64.vm.provider :libvirt do |v|
v.memory = 256
v.cpus = 1
v.nested = true
end
nat64.vm.provision "shell" do |s|
s.path = "nat64.sh"
s.privileged = false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment