osquery-1/Vagrantfile
2014-09-08 20:07:11 -07:00

12 lines
198 B
Ruby

Vagrant.configure("2") do |config|
config.vm.define "ubuntu" do |box|
box.vm.box = "ubuntu/trusty64"
end
config.vm.define "centos" do |box|
box.vm.box = "chef/centos-6.5"
end
end