Skip to content

Commit c0ea28f

Browse files
update inpsec package name as inspe-ie
Signed-off-by: Chandra <cprasad@progress.com>
1 parent 80d2724 commit c0ea28f

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

content/install/_index.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ To uninstall using the Windows UI:
8787
To uninstall from the command line, run the following command in an elevated PowerShell or Command Prompt session:
8888

8989
```powershell
90-
msiexec /x inspec-<version>-x64.msi /qn
90+
msiexec /x inspec-ie-<version>-x64.msi /qn
9191
```
9292

9393
Replace `<version>` with the version number of the currently installed package.
@@ -109,35 +109,35 @@ Replace `<VERSION>` with the version number to install and `<LICENSE_ID>` with y
109109
Using `wget`:
110110

111111
```sh
112-
wget -O "inspec-<VERSION>-linux.deb" "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=linux&pm=deb&v=<VERSION>"
112+
wget -O "inspec-ie-<VERSION>-linux.deb" "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=linux&pm=deb&v=<VERSION>"
113113
```
114114

115115
Using `curl`:
116116

117117
```sh
118-
curl -o "inspec-<VERSION>-linux.deb" "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=linux&pm=deb&v=<VERSION>"
118+
curl -o "inspec-ie-<VERSION>-linux.deb" "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=linux&pm=deb&v=<VERSION>"
119119
```
120120

121121
#### Download the RPM-based installer
122122

123123
Using `wget`:
124124

125125
```sh
126-
wget -O "inspec-<VERSION>-linux.rpm" "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=linux&pm=rpm&v=<VERSION>"
126+
wget -O "inspec-ie-<VERSION>-linux.rpm" "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=linux&pm=rpm&v=<VERSION>"
127127
```
128128

129129
Using `curl`:
130130

131131
```sh
132-
curl -o "inspec-<VERSION>-linux.rpm" "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=linux&pm=rpm&v=<VERSION>"
132+
curl -o "inspec-ie-<VERSION>-linux.rpm" "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=linux&pm=rpm&v=<VERSION>"
133133
```
134134

135135
#### Download the Windows installer
136136

137137
Run the following command in an elevated PowerShell session:
138138

139139
```powershell
140-
Invoke-WebRequest -Uri "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=windows&pm=msi&v=<VERSION>" -OutFile "inspec-<VERSION>-windows.msi"
140+
Invoke-WebRequest -Uri "https://chefdownload-commercial.chef.io/stable/inspec/download?eol=false&license_id=<LICENSE_ID>&m=x86_64&p=windows&pm=msi&v=<VERSION>" -OutFile "inspec-ie-<VERSION>-windows.msi"
141141
```
142142

143143
### Step 2: Install the package
@@ -147,46 +147,46 @@ Navigate to the directory containing the downloaded installer and run the approp
147147
#### Install on Debian-based distributions
148148

149149
```sh
150-
sudo dpkg -i inspec_<version>_amd64.deb
150+
sudo dpkg -i inspec-ie-<version>_amd64.deb
151151
```
152152

153153
Replace `<version>` with the version number of the downloaded package, for example:
154154

155155
```sh
156-
sudo dpkg -i inspec_7.6.0-1_amd64.deb
156+
sudo dpkg -i inspec-ie-7.6.0-1_amd64.deb
157157
```
158158

159159
#### Install on RPM-based distributions
160160

161161
Using `rpm`:
162162

163163
```sh
164-
sudo rpm -Uvh inspec-<version>.x86_64.rpm
164+
sudo rpm -Uvh inspec-ie-<version>.x86_64.rpm
165165
```
166166

167167
Using `dnf`:
168168

169169
```sh
170-
sudo dnf install ./inspec-<version>.x86_64.rpm
170+
sudo dnf install ./inspec-ie-<version>.x86_64.rpm
171171
```
172172

173173
For Amazon Linux 2 or systems using `yum`:
174174

175175
```sh
176-
sudo yum install ./inspec-<version>.x86_64.rpm
176+
sudo yum install ./inspec-ie-<version>.x86_64.rpm
177177
```
178178

179-
Replace `<version>` with the version number of the downloaded package, for example `inspec-7.6.0-1.el8.x86_64.rpm`.
179+
Replace `<version>` with the version number of the downloaded package, for example `inspec-ie-7.6.0-1.el8.x86_64.rpm`.
180180

181181
#### Install on Windows
182182

183183
Run the following command in an elevated PowerShell or Command Prompt session:
184184

185185
```powershell
186-
msiexec /i inspec-<version>-x64.msi /qn
186+
msiexec /i inspec-ie-<version>-x64.msi /qn
187187
```
188188

189-
Replace `<version>` with the version number of the downloaded package, for example `inspec-7.6.0-x64.msi`.
189+
Replace `<version>` with the version number of the downloaded package, for example `inspec-ie-7.6.0-x64.msi`.
190190

191191
Alternatively, double-click the `.msi` file and follow the on-screen installation wizard.
192192

@@ -202,8 +202,6 @@ The output displays the installed version of Chef InSpec, for example:
202202
7.6.0
203203
```
204204

205-
## Manage Chef InSpec
206-
207205
### Upgrade Chef InSpec
208206

209207
To upgrade Chef InSpec to a newer version:

0 commit comments

Comments
 (0)