0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Vagrant plugin to add VirtualBox disk at creation time
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.13
~> 10.0
 Project Readme

vagrant-newdisk

A Vagrant plugin to add a disks in VirtualBox

Installation

vagrant plugin install vagrant-newdisk

Usage

Set the size you want for your disk in your Vagrantfile. For example

Vagrant.configure('2') do |config|
  config.vm.box = 'ubuntu/xenial64'
  config.newdisk.size = 10 * 1024 # size in megabytes
  config.newdisk.path = "/tmp/your-file.vdi"
end

Limitations

At present only one disk can be added to the first controller.

License

The gem is available as open source under the terms of the MIT License.