Difference between revisions of "Vagrant creating extra disks"

From MyWiki
Jump to: navigation, search
(Created page with "<source lang="text"> Vagrant.configure("2") do |config| config.vm.provider :libvirt do |libvirt| libvirt.storage :file, :size => '20G' libvirt.storage :file, :size =...")
 
(No difference)

Latest revision as of 12:32, 9 August 2017

Vagrant.configure("2") do |config|
  config.vm.provider :libvirt do |libvirt|
    libvirt.storage :file, :size => '20G'
    libvirt.storage :file, :size => '40G', :type => 'raw'
  end
end