Merge pull request #2184 from chris-rock/patch-1
replace opscode with chef
This commit is contained in:
commit
7d88e2c5db
|
@ -10,12 +10,12 @@ description: |-
|
||||||
Type: `chef-solo`
|
Type: `chef-solo`
|
||||||
|
|
||||||
The Chef solo Packer provisioner installs and configures software on machines built
|
The Chef solo Packer provisioner installs and configures software on machines built
|
||||||
by Packer using [chef-solo](http://docs.opscode.com/chef_solo.html). Cookbooks
|
by Packer using [chef-solo](https://docs.chef.io/chef_solo.html). Cookbooks
|
||||||
can be uploaded from your local machine to the remote machine or remote paths
|
can be uploaded from your local machine to the remote machine or remote paths
|
||||||
can be used.
|
can be used.
|
||||||
|
|
||||||
The provisioner will even install Chef onto your machine if it isn't already
|
The provisioner will even install Chef onto your machine if it isn't already
|
||||||
installed, using the official Chef installers provided by Opscode.
|
installed, using the official Chef installers provided by Chef Inc.
|
||||||
|
|
||||||
## Basic Example
|
## Basic Example
|
||||||
|
|
||||||
|
@ -82,11 +82,11 @@ configuration is actually required, but at least `run_list` is recommended.
|
||||||
These will be uploaded to the remote machine in the directory specified by the
|
These will be uploaded to the remote machine in the directory specified by the
|
||||||
`staging_directory`. By default, this is empty.
|
`staging_directory`. By default, this is empty.
|
||||||
|
|
||||||
* `run_list` (array of strings) - The [run list](http://docs.opscode.com/essentials_node_object_run_lists.html)
|
* `run_list` (array of strings) - The [run list](https://docs.chef.io/run_lists.html)
|
||||||
for Chef. By default this is empty.
|
for Chef. By default this is empty.
|
||||||
|
|
||||||
* `skip_install` (boolean) - If true, Chef will not automatically be installed
|
* `skip_install` (boolean) - If true, Chef will not automatically be installed
|
||||||
on the machine using the Opscode omnibus installers.
|
on the machine using the Chef omnibus installers.
|
||||||
|
|
||||||
* `staging_directory` (string) - This is the directory where all the configuration
|
* `staging_directory` (string) - This is the directory where all the configuration
|
||||||
of Chef by Packer will be placed. By default this is "/tmp/packer-chef-solo".
|
of Chef by Packer will be placed. By default this is "/tmp/packer-chef-solo".
|
||||||
|
@ -149,7 +149,7 @@ for readability) to install Chef. This command can be customized if you want
|
||||||
to install Chef in another way.
|
to install Chef in another way.
|
||||||
|
|
||||||
```text
|
```text
|
||||||
curl -L https://www.opscode.com/chef/install.sh | \
|
curl -L https://www.chef.io/chef/install.sh | \
|
||||||
{{if .Sudo}}sudo{{end}} bash
|
{{if .Sudo}}sudo{{end}} bash
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue