Skip to content
Snippets Groups Projects
Vagrantfile 162 B

Vagrant.configure("2") do |config|

  config.vm.box = "debian/contrib-jessie64"

  config.vm.provision "shell", inline: <<-SHELL
    apt-get update

  SHELL
end