Sha256: 69dbfac69436e3863d0d0ebb702e832527fa538aa8dc7d2d7eed331899a5d77a
Contents?: true
Size: 699 Bytes
Versions: 9
Compression:
Stored size: 699 Bytes
Contents
%w{build-essential binutils-doc libxml2-dev libxslt1-dev}.each do |pkg| package pkg do action :install end end package "autoconf" do action :install end package "flex" do action :install end package "bison" do action :install end %w[cucumber-chef cucumber rspec].each do |gem| gem_package gem end directory "/root/.ssh" do owner "root" mode "0600" end cookbook_file "/root/.ssh/git-key.rsa" do source "git-private-key" end cookbook_file "/root/.ssh/config" do source "permissive-ssh-config" end cookbook_file "/root/.ssh/id_rsa" do source "cucumber-private-key" mode "0600" owner "root" end cookbook_file "/root/.bashrc" do source "add-git-identity" end
Version data entries
9 entries across 9 versions & 1 rubygems