-
-
Save ranjib/5063067 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cookbooks/nokogiri/recipes/default.rb | |
stage "install_deps" do | |
run_list "recipe[nokogiri::deps]" | |
end | |
stage "install_gem" do | |
run_list "recipe[nokogiri::gem]" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include_recipe "yumrepo::epel" # you can't do shit on rhel w/out epel repo first installed | |
%w{ libxslt libxml2 libxml2-devel libxslt-devel }.each do |pkg| | |
package pkg | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chef_gem "nokogiri" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment