Created
May 28, 2013 02:46
-
-
Save shinyay/5660230 to your computer and use it in GitHub Desktop.
I show a sample recipe of chef, which install sysstat and mosh.
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
| # | |
| # Cookbook Name:: base_packages | |
| # Recipe:: default | |
| # | |
| # Copyright 2013, YOUR_COMPANY_NAME | |
| # | |
| # All rights reserved - Do Not Redistribute | |
| # | |
| %w{sysstat mosh}.each do |pkg| | |
| package pkg do | |
| action :install | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment