Guest User

Untitled

a guest
Jul 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # apt update first or the build-essential will meet issues
  2. include_recipe "apt"
  3. include_recipe "build-essential"
  4. include_recipe "rvm"
  5.  
  6. # upgrade the lucid32 box to 0.9.12
  7. gem_package "chef" do
  8. action :install
  9. version "0.9.12"
  10. end
  11.  
  12. # require for nokogiri, which is required for sunspot-installer
  13. ['libxslt1-dev','libxml2-dev'].each do |pkg|
  14. package pkg do
  15. action :install
  16. end
  17. end
Add Comment
Please, Sign In to add comment