Created
May 21, 2013 04:17
-
-
Save joshmcarthur/5617454 to your computer and use it in GitHub Desktop.
Installing packages with Chef
This file contains hidden or 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
%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