1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
metasploit-framework/Vagrantfile
2016-02-16 21:46:12 -07:00

12 lines
287 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "phusion/ubuntu-14.04-amd64"
config.vm.provision :chef_apply do |chef|
chef.version = "latest"
chef.install = "force"
chef.recipe = IO.read("scripts/shell/provision.rb")
end
end