mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
12 lines
279 B
Ruby
12 lines
279 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
Vagrant.configure(2) do |config|
|
|
config.vm.box = "bento/ubuntu-14.04"
|
|
config.vm.provision :chef_apply do |chef|
|
|
chef.version = "latest"
|
|
chef.install = "force"
|
|
chef.recipe = IO.read("scripts/shell/provision.rb")
|
|
end
|
|
end
|