scrap-is-not-scrap/Vagrantfile

7 lines
159 B
Plaintext
Raw Normal View History

# -*- mode: ruby -*-
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-16.04"
2016-07-18 02:19:05 +00:00
config.vm.provision "shell", path: "provision-ubuntu.sh"
end