# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| # list of required plugins # if not installed vagrant will install them automatically config.vagrant.plugins = ["vagrant-vbguest" ] # The most common configuration options are documented and commented below. # For a complete reference, please see the online documentation at # https://docs.vagrantup.com. config.vm.box = "centos/7" config.disksize.size = '50GB' config.vm.provider "virtualbox" do |vb| vb.name = "CentOS" end end