Merge pull request #1231 from eheydrick/master

Update chef hints to be more modern
This commit is contained in:
Rico Sta. Cruz 2019-10-15 20:24:42 +11:00 committed by GitHub
commit 25a2090a84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

10
chef.md
View File

@ -14,26 +14,26 @@ $ sudo apt-get install curl
``` ```
```bash ```bash
$ curl -L https://www.opscode.com/chef/install.sh | bash $ curl -L https://omnitruck.chef.io/install.sh | sudo bash
Thank you for installing Chef! Thank you for installing Chef!
``` ```
```bash ```bash
$ chef-solo -v $ chef-solo -v
... ...
Chef: 11.4.0 Chef: 14.5.33
``` ```
### Start the cookbook ### Start the cookbook
```bash ```bash
wget http://github.com/opscode/chef-repo/tarball/master -O - | tar xzf - --strip-components=1 wget http://github.com/chef-cookbooks/chef-repo/tarball/master -O - | tar xzf - --strip-components=1
``` ```
### Knife ### Knife
```bash ```bash
$ knife cookbook site download mysql $ knife supermarket download mysql
``` ```
### Invoking chef-solo ### Invoking chef-solo
@ -105,5 +105,5 @@ end
## Also see ## Also see
* [Getting started with Chef](http://gettingstartedwithchef.com/) _(gettingstartedwithchef.com)_ * [Learn Chef Rally](https://learn.chef.io) _(learn.chef.io)_
* [install_from_source.rb recipe](https://github.com/mdxp/nodejs-cookbook/blob/master/recipes/install_from_source.rb) _(github.com)_ * [install_from_source.rb recipe](https://github.com/mdxp/nodejs-cookbook/blob/master/recipes/install_from_source.rb) _(github.com)_