dbfit / vagrant-newdisk

A Vagrant plugin for adding a new disk to VirtualBox box

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A Vagrant plugin for adding a new disk to VirtualBox box

License:MIT License


Languages

Language:Ruby 100.0%