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