Update chef hints to be more modern

This commit is contained in:
Eric Heydrick 2019-10-09 12:44:58 -07:00
parent 1e927dccfc
commit a5490a0641
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)_