Skip to content
Snippets Groups Projects
Commit 33022f10 authored by McConahy, Renee Margaret's avatar McConahy, Renee Margaret
Browse files

Vagrantfile: Use VBox's linked clones.

This reduces the time and space required to spin up a new VM.
parent 6157983e
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ Vagrant.configure("2") do |config|
machine.vm.network "private_network", ip: machine_config[:external_ip]
config.vm.synced_folder ".", "/vagrant", disabled: true
machine.vm.provider "virtualbox" do |vb|
vb.linked_clone = true
vb.memory = 2048
vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment