mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Clarify gem install instructions regarding inspec-bin in README
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
This commit is contained in:
parent
1fc518c588
commit
639c3a7489
1 changed files with 9 additions and 2 deletions
11
README.md
11
README.md
|
@ -53,7 +53,7 @@ inspec exec test.rb -t docker://container_id
|
|||
|
||||
## Installation
|
||||
|
||||
Chef InSpec requires Ruby ( >= 2.4 ).
|
||||
Chef InSpec requires Ruby ( >= 2.4 ).
|
||||
|
||||
Note: Versions of Chef InSpec 4.0 and later require accepting the EULA to use. Please visit the [license acceptance page](https://docs.chef.io/chef_license_accept.html) on the Chef docs site for more information.
|
||||
|
||||
|
@ -85,12 +85,19 @@ For Ubuntu:
|
|||
apt-get -y install ruby ruby-dev gcc g++ make
|
||||
```
|
||||
|
||||
To install inspec from [rubygems](https://rubygems.org/):
|
||||
To install the `inspec` executable, which requires accepting the [Chef License](https://docs.chef.io/chef_license_accept.html), run:
|
||||
|
||||
```bash
|
||||
gem install inspec-bin
|
||||
```
|
||||
|
||||
You may also use `inspec` as a library, with no executable; this does not require accepting the license. To install the library as a gem, run:
|
||||
|
||||
```bash
|
||||
gem install inspec
|
||||
```
|
||||
|
||||
|
||||
### Usage via Docker
|
||||
|
||||
Download the image and define a function for convenience:
|
||||
|
|
Loading…
Reference in a new issue