Skip to content

Commit 3f23846

Browse files
author
Chris Pangalos
committed
Apply markups and simplify
1 parent 0960be1 commit 3f23846

File tree

2 files changed

+28
-18
lines changed

2 files changed

+28
-18
lines changed

articles/operator-insights/set-up-ingestion-agent.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,25 @@ Download the RPM for the ingestion agent using the details you received as part
4444

4545
Links to the current and previous releases of the agents are available below the heading of each [release note](ingestion-agent-release-notes.md). If you're looking for an agent version that's more than 6 months old, check out the [release notes archive](ingestion-agent-release-notes-archive.md).
4646

47-
### Verify the authenticity of the RPM (optional)
47+
### Verify the authenticity of the ingestion agent RPM (optional)
4848

49-
Before you install the RPM, you can verify that it's the correct version and hasn't been tampered with.
49+
Before you install the RPM, you can verify the signature of the RPM with the [Microsoft public key file](https://packages.microsoft.com/keys/microsoft.asc) to ensure it has not been corrupted or tampered with.
5050

51-
This can be done using the public key file provided by Microsoft, which is available at [https://packages.microsoft.com/keys/microsoft.asc](https://packages.microsoft.com/keys/microsoft.asc).
51+
To do this, perform the following steps:
5252

53-
To verify, execute the following commands once the agent has been downloaded:
54-
55-
1. Download the provided public key (microsoft.asc)
56-
- `wget https://packages.microsoft.com/keys/microsoft.asc`
53+
1. Download the RPM.
54+
1. Download the provided public key
55+
```
56+
wget https://packages.microsoft.com/keys/microsoft.asc
57+
```
5758
1. Import the public key to the GPG keyring
58-
- `gpg --import microsoft.asc`
59+
```
60+
gpg --import microsoft.asc
61+
```
5962
1. Verify the RPM signature matches the public key
60-
- `rpm --checksig <path-to-rpm>`
63+
```
64+
rpm --checksig <path-to-rpm>
65+
```
6166
6267
The output of the final command should be `<path-to-rpm>: digests signatures OK`
6368

articles/operator-insights/upgrade-ingestion-agent.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,25 @@ Obtain the latest version of the ingestion agent RPM from [https://go.microsoft.
2222

2323
Links to the current and previous releases of the agents are available below the heading of each [release note](ingestion-agent-release-notes.md). If you're looking for an agent version that's more than 6 months old, check out the [release notes archive](ingestion-agent-release-notes-archive.md).
2424

25-
### Verify the authenticity of the RPM (optional)
25+
### Verify the authenticity of the ingestion agent RPM (optional)
2626

27-
Before you install the RPM, you can verify that it's the correct version and hasn't been tampered with.
27+
Before you install the RPM, you can verify the signature of the RPM with the [Microsoft public key file](https://packages.microsoft.com/keys/microsoft.asc) to ensure it has not been corrupted or tampered with.
2828

29-
This can be done using the public key file provided by Microsoft, which is available at [https://packages.microsoft.com/keys/microsoft.asc](https://packages.microsoft.com/keys/microsoft.asc).
29+
To do this, perform the following steps:
3030

31-
To verify, execute the following commands once the agent has been downloaded:
32-
33-
1. Download the provided public key (microsoft.asc)
34-
- `wget https://packages.microsoft.com/keys/microsoft.asc`
31+
1. Download the RPM.
32+
1. Download the provided public key
33+
```
34+
wget https://packages.microsoft.com/keys/microsoft.asc
35+
```
3536
1. Import the public key to the GPG keyring
36-
- `gpg --import microsoft.asc`
37+
```
38+
gpg --import microsoft.asc
39+
```
3740
1. Verify the RPM signature matches the public key
38-
- `rpm --checksig <path-to-rpm>`
41+
```
42+
rpm --checksig <path-to-rpm>
43+
```
3944
4045
The output of the final command should be `<path-to-rpm>: digests signatures OK`
4146

0 commit comments

Comments
 (0)