Skip to content

Instantly share code, notes, and snippets.

@joshmcarthur
Created May 21, 2013 04:17
Show Gist options
  • Save joshmcarthur/5617454 to your computer and use it in GitHub Desktop.
Save joshmcarthur/5617454 to your computer and use it in GitHub Desktop.
Installing packages with Chef
%w(memcached redis-server htop fail2ban).each do |required_package|
package required_package do
action :install
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment