Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions content/download/commercial.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ The `metadata` endpoint returns data about a particular package of a Chef produc
https://chefdownload-commercial.chef.io/<CHANNEL>/<PRODUCT>/metadata?p=<PLATFORM>&pv=<PLATFORM_VERSION>&m=<ARCHITECTURE>&v=<PRODUCT_VERSION>&license_id=<LICENSE_ID>
```

For Chef Infra Client Enterprise and the Chef Infra Client migration tool, include the `pm` (package manager) query parameter. This value determines the type of package to retrieve (for example: `deb`, `rpm`, `msi`, or `tar`) and is required because these products support multiple packaging formats.
For Chef Infra Client Enterprise and Chef Infra Client Legacy Migration, include the `pm` (package manager) query parameter. This value determines the type of package to retrieve (for example: `deb`, `rpm`, `msi`, or `tar`) and is required because these products support multiple packaging formats.

```plain
https://chefdownload-commercial.chef.io/<CHANNEL>/<PRODUCT>/metadata?p=<PLATFORM>&pm=<PACKAGE_MANAGER>&m=<ARCHITECTURE>&v=<PRODUCT_VERSION>&license_id=<LICENSE_ID>
Expand All @@ -125,7 +125,7 @@ The `download` endpoint downloads a particular package of a Chef product.
https://chefdownload-commercial.chef.io/<CHANNEL>/<PRODUCT>/download?p=<PLATFORM>&pv=<PLATFORM_VERSION>&m=<ARCHITECTURE>&v=<PRODUCT_VERSION>&license_id=<LICENSE_ID>
```

For Chef Infra Client Enterprise or the Chef Infra Client migration tool, include the `pm` (package manager) query parameter in your request.
For Chef Infra Client Enterprise or Chef Infra Client Legacy Migration, include the `pm` (package manager) query parameter in your request.
This parameter specifies the package format to download---for example, `deb`, `rpm`, `msi`, or `tar`.

```plain
Expand All @@ -140,7 +140,7 @@ The `fileName` endpoint returns the file name.
https://chefdownload-commercial.chef.io/<CHANNEL>/<PRODUCT>/fileName?p=<PLATFORM>&pv=<PLATFORM_VERSION>&m=<ARCHITECTURE>&v=<PRODUCT_VERSION>&license_id=<LICENSE_ID>
```

For Chef Infra Client Enterprise or the Chef Infra Client migration tool, include the `pm` (package manager) query parameter in your request.
For Chef Infra Client Enterprise or Chef Infra Client Legacy Migration, include the `pm` (package manager) query parameter in your request.
This parameter specifies the package format---for example, `deb`, `rpm`, `msi`, or `tar`.

```plain
Expand Down Expand Up @@ -209,7 +209,7 @@ The API accepts the following parameters in a query string.
`pm`
: The package manager.

Use this parameter only for Chef Infra Client Enterprise and the Chef Infra Client migration tool.
Use this parameter only for Chef Infra Client Enterprise and Chef Infra Client Legacy Migration.

Possible values:

Expand All @@ -230,7 +230,7 @@ You can also use the [products endpoint](#products)
| Chef Habitat | `habitat` |
| Chef Infra Client | `chef` |
| Chef Infra Client Enterprise | `chef-ice` |
| Chef Infra Client migration tool | `migrate-ice` |
| Chef Infra Client Legacy Migration | `migrate-ice` |
| Chef Infra Server | `chef-server` |
| Chef InSpec | `inspec` |
| Chef Management Console | `manage` |
Expand Down Expand Up @@ -285,7 +285,7 @@ To use curl to download a package, enter the following:
curl -LOJ 'https://chefdownload-commercial.chef.io/<CHANNEL>/<PRODUCT>/download?p=<PLATFORM>&pv=<PLATFORM_VERSION>&m=<ARCHITECTURE>&license_id=<LICENSE_ID>'
```

To use curl to download a Chef Infra Client Enterprise or Chef Infra Client migration tool package, include the `pm` (package manager) parameter as shown:
To use curl to download a Chef Infra Client Enterprise or Chef Infra Client Legacy Migration package, include the `pm` (package manager) parameter as shown:

```bash
curl -LOJ 'https://chefdownload-commercial.chef.io/<CHANNEL>/<PRODUCT>/download?p=<PLATFORM>&pm=<PACKAGE_MANAGER>&m=<ARCHITECTURE>&license_id=<LICENSE_ID>'
Expand All @@ -297,7 +297,7 @@ To use GNU Wget to download a package, enter the following:
wget --content-disposition https://chefdownload-commercial.chef.io/<CHANNEL>/<PRODUCT>/download?p=<PLATFORM>&pv=<PLATFORM_VERSION>&m=<ARCHITECTURE>&license_id=<LICENSE_ID>
```

To use GNU Wget to download a Chef Infra Client Enterprise or Chef Infra Client migration tool package, enter the following:
To use GNU Wget to download a Chef Infra Client Enterprise or Chef Infra Client Legacy Migration package, enter the following:

```bash
wget --content-disposition https://chefdownload-commercial.chef.io/<CHANNEL>/<PRODUCT>/download?p=<PLATFORM>&pm=<PACKAGE_MANAGER>&m=<ARCHITECTURE>&license_id=<LICENSE_ID>
Expand Down