ViktorOgnev
7/16/2014 - 9:06 AM

gistfile1.rb

Vagrant.configure("2") do |config|
	config.vm.define 'ubuntu-14.04' do |c|
            c.vm.hostname = "ubuntu-1404"
            c.vm.box = "ubuntu-14.04"
	    c.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
            c.vm.provision :shell, inline: "apt-get update"
        end
end