Skip to content

Instantly share code, notes, and snippets.

@ViktorOgnev
Created July 16, 2014 09:06
Show Gist options
  • Select an option

  • Save ViktorOgnev/8316d30f930b20724690 to your computer and use it in GitHub Desktop.

Select an option

Save ViktorOgnev/8316d30f930b20724690 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment