Skip to content

Commit 0436989

Browse files
committed
Fix update-ca for distributions
1 parent a89fbf2 commit 0436989

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/iot-edge/how-to-connect-downstream-iot-edge-device.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,9 @@ To enable secure connections, every IoT Edge parent device in a gateway scenario
225225
```bash
226226
# Update the certificate store
227227
228-
# For Ubuntu and Debian, use update-ca-certificates command
228+
# For Ubuntu or Debian - use update-ca-certificates
229229
sudo update-ca-certificates
230-
# For EFLOW, use update-ca-trust
230+
# For EFLOW or RHEL - use update-ca-trust
231231
sudo update-ca-trust
232232
```
233233

@@ -447,9 +447,9 @@ To enable secure connections, every IoT Edge downstream device in a gateway scen
447447
```bash
448448
# Update the certificate store
449449

450-
# For Ubuntu and Debian, use update-ca-certificates command
450+
# For Ubuntu or Debian - use update-ca-certificates
451451
sudo update-ca-certificates
452-
# For EFLOW, use update-ca-trust
452+
# For EFLOW or RHEL - use update-ca-trust
453453
sudo update-ca-trust
454454
```
455455

articles/iot-edge/how-to-manage-device-certificates.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,15 @@ Using a self-signed certificate authority (CA) certificate as a root of trust wi
173173

174174
Installing the certificate to the trust bundle file makes it available to container modules but not to host modules like Azure Device Update or Defender. If you use host level components or run into other TLS issues, also install the root CA certificate to the operating system certificate store:
175175

176-
# [Linux](#tab/linux)
176+
# [Debian / Ubuntu](#tab/ubuntu)
177177

178178
```bash
179179
sudo cp /var/aziot/certs/my-root-ca.pem /usr/local/share/ca-certificates/my-root-ca.pem.crt
180180

181-
sudo update-ca-trust
181+
sudo update-ca-certificates
182182
```
183183

184-
# [IoT Edge for Linux on Windows (EFLOW)](#tab/windows)
184+
# [EFLOW / RHEL](#tab/windows)
185185

186186
```bash
187187
sudo cp /var/aziot/certs/my-root-ca.pem /etc/pki/ca-trust/source/anchors/my-root-ca.pem.crt

0 commit comments

Comments
 (0)