I'm very new to Chef and as I learned, to install apache using chef, there are 2 ways:
Method 1) download apache community cookbook at: http://community.opscode.com/cookbooks/apache2 and save the unzip under cookbooks directory
Method 2) in a recipe, default.rb, I can do: package "apache2"
so what is the benefit or differences between these 2 methods? Does method 1 by downloading cookbook will give more control and easy to customize its recipes?
Thanks