Skip to content

Instantly share code, notes, and snippets.

@mlafeldt
Created September 25, 2012 18:59
Show Gist options
  • Save mlafeldt/3783760 to your computer and use it in GitHub Desktop.
Save mlafeldt/3783760 to your computer and use it in GitHub Desktop.
Berkshelf Vagrant Setup
# Bundler
/.bundle
/bin/
/vendor/gems/
# Berkshelf
/Berksfile.lock
/cookbooks/
site :opscode
cookbook 'apt'
cookbook 'ps2dev', :git => 'git://github.com/mlafeldt/ps2dev-cookbook.git'
source :rubygems
gem "berkshelf", "~>0.5"
GEM
remote: http://rubygems.org/
specs:
activemodel (3.2.8)
activesupport (= 3.2.8)
builder (~> 3.0.0)
activesupport (3.2.8)
i18n (~> 0.6)
multi_json (~> 1.0)
addressable (2.3.2)
archive-tar-minitar (0.5.2)
berkshelf (0.5.0)
activesupport
chef (~> 10.12.0)
minitar
multi_json
ridley (>= 0.0.5)
solve (~> 0.2.1)
thor (~> 0.16.0)
vagrant (~> 1.0.5)
builder (3.0.3)
bunny (0.8.0)
chef (10.12.0)
bunny (>= 0.6.0)
erubis
highline (>= 1.6.9)
json (>= 1.4.4, <= 1.6.1)
mixlib-authentication (>= 1.1.0)
mixlib-cli (>= 1.1.0)
mixlib-config (>= 1.1.2)
mixlib-log (>= 1.3.0)
mixlib-shellout
moneta
net-ssh (~> 2.2.2)
net-ssh-multi (~> 1.1.0)
ohai (>= 0.6.0)
rest-client (>= 1.0.4, < 1.7.0)
treetop (~> 1.4.9)
uuidtools
yajl-ruby (~> 1.1)
childprocess (0.3.5)
ffi (~> 1.0, >= 1.0.6)
dep_selector (0.0.8)
erubis (2.7.0)
faraday (0.8.4)
multipart-post (~> 1.1)
ffi (1.1.5)
highline (1.6.15)
i18n (0.6.1)
ipaddress (0.8.0)
json (1.5.4)
log4r (1.1.10)
mime-types (1.19)
minitar (0.5.3)
mixlib-authentication (1.3.0)
mixlib-log
mixlib-cli (1.2.2)
mixlib-config (1.1.2)
mixlib-log (1.4.1)
mixlib-shellout (1.1.0)
moneta (0.6.0)
multi_json (1.3.6)
multipart-post (1.1.5)
net-scp (1.0.4)
net-ssh (>= 1.99.1)
net-ssh (2.2.2)
net-ssh-gateway (1.1.0)
net-ssh (>= 1.99.1)
net-ssh-multi (1.1)
net-ssh (>= 2.1.4)
net-ssh-gateway (>= 0.99.0)
ohai (6.14.0)
ipaddress
mixlib-cli
mixlib-config
mixlib-log
systemu
yajl-ruby
polyglot (0.3.3)
rest-client (1.6.7)
mime-types (>= 1.16)
ridley (0.0.5)
activemodel
addressable
faraday
mixlib-authentication
mixlib-log
multi_json (>= 1.0.4)
yajl-ruby
solve (0.2.1)
dep_selector (~> 0.0.8)
systemu (2.5.2)
thor (0.16.0)
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
uuidtools (2.1.3)
vagrant (1.0.5)
archive-tar-minitar (= 0.5.2)
childprocess (~> 0.3.1)
erubis (~> 2.7.0)
i18n (~> 0.6.0)
json (~> 1.5.1)
log4r (~> 1.1.9)
net-scp (~> 1.0.4)
net-ssh (~> 2.2.2)
yajl-ruby (1.1.0)
PLATFORMS
ruby
DEPENDENCIES
berkshelf (~> 0.5)
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "lucid64"
config.vm.box_url = "http://files.vagrantup.com/lucid64.box"
config.vm.provision :chef_solo do |chef|
chef.add_recipe "apt"
chef.add_recipe "ps2dev"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment