-
Notifications
You must be signed in to change notification settings - Fork 375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes + cleanups to rpmkeys manual #3433
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only a few small nits. Feel free to ignore.
Thanks for the suggestions @nwalfield , should be sorted now. I also found yet more fubar about the rpm database and headers in there, removed. |
docs/man/rpmkeys.8.md
Outdated
|
||
Finally, public keys can be erased after importing just like packages. | ||
Here\'s how to remove the Red Hat GPG/DSA key: | ||
Write the key(s) in an ASCII-armor encoding. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps: s/in/using/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, "write" seemed lonely now that the context changed, so I replaced it with 'Output'. And, there was another use of 'This blahblah', fixed now 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks Neal for looking, too! I've just fixed up a lonely opening square bracket before the --delete
argument (which is actually mandatory).
One more typo fixup 😄 |
Drop all references to pre-historical Red Hat keys, short key-ids and gpg-pubkey packages. Use the term fingerprint consistently everywhere. Add a brief explanation of the --list format and usage example for --export too.
I've autosquashed the fixup commit on top and will merge this once the CI finishes. This is the fixup patch I've applied, just for full transparency: diff --git a/docs/man/rpmkeys.8.md b/docs/man/rpmkeys.8.md
index e7993e52c..093a91606 100644
--- a/docs/man/rpmkeys.8.md
+++ b/docs/man/rpmkeys.8.md
@@ -25,7 +25,7 @@ The general forms of rpm digital signature commands are
**rpmkeys** **\--import** *PUBKEY \...*
-**rpmkeys** **\--delete** \[*FINGERPRINT \...*
+**rpmkeys** **\--delete** *FINGERPRINT \...*
**rpmkeys** {**-K\|\--checksig**} *PACKAGE\_FILE \...*
@@ -53,7 +53,7 @@ The fingerprint is the handle used for all operations on the keys.
Output the key(s) using an ASCII-armor encoding.
-Exporting allows inspectecting the data with specialized tools, such
+Exporting allows for inspecting the data with specialized tools, such
as Sequoia or GnuPG. For example:
**rpmkeys --export 771b18d3d7baa28734333c424344591e1964c5fc | sq inspect ** |
Drop all references to pre-historical Red Hat keys, short key-ids and gpg-pubkey packages. Use the term fingerprint consistently everywhere. Add a brief explanation of the --list format and usage example for --export too.