Created
July 7, 2019 22:09
-
-
Save agowa/1fedf8e712879a5b67c36cc550671193 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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