1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
metasploit-framework/Vagrantfile

12 lines
287 B
Ruby
Raw Normal View History

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
2016-02-17 05:46:12 +01:00
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