Skip to content

Commit

Permalink
Update extended_install.md
Browse files Browse the repository at this point in the history
Originally there was a Syntax Error in the "To trust the CRS project's public key:" section, where the command `gpg --edit-key` was misspelled as `gpg edit-key`. We fixed this by making the final syntax `gpg --edit-key`. 

Before:
----------------------------------------
```bash
gpg edit-key 
----------------------------------------

After:
----------------------------------------
changed to:
```bash
gpg --edit-key
---------------------------------------
  • Loading branch information
Danrancan authored Feb 21, 2024
1 parent 3b59016 commit 08243c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/deployment/extended_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ If the signature was good then the verification succeeds. If a warning is displa
To trust the CRS project's public key:

```bash
gpg edit-key 36006F0E0BA167832158821138EEACA1AB8A6E72
gpg --edit-key 36006F0E0BA167832158821138EEACA1AB8A6E72
gpg> trust
Your decision: 5 (ultimate trust)
Are you sure: Yes
Expand Down Expand Up @@ -234,4 +234,4 @@ Nginx will include files from the Nginx configuration directory (`/etc/nginx` or

{{% notice note %}}
You will also need to include the plugins you want along with your CRS installation.
{{% /notice %}}
{{% /notice %}}

0 comments on commit 08243c6

Please sign in to comment.