Skip to content

Instantly share code, notes, and snippets.

@audy
Forked from leifg/Vagrantfile
Created June 27, 2014 18:25
Show Gist options
  • Save audy/4c9a099ccc26df182c60 to your computer and use it in GitHub Desktop.
Save audy/4c9a099ccc26df182c60 to your computer and use it in GitHub Desktop.
file_to_disk = './tmp/large_disk.vdi'
Vagrant::Config.run do |config|
config.vm.box = 'base'
config.vm.customize ['createhd', '--filename', file_to_disk, '--size', 500 * 1024]
config.vm.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', file_to_disk]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment