grim/hgkeeper

Fix wrong parameter of ssh-keygen

12 months ago, aklitzing
07d2669c823b
Parents 7351a2dcdf60
Children 3e4e68fec9ed
Fix wrong parameter of ssh-keygen

usage: ssh-keygen [-q] [-a rounds] [-b bits] [-C comment] [-f output_keyfile]
[-m format] [-N new_passphrase] [-O option]
[-t dsa | ecdsa | ecdsa-sk | ed25519 | ed25519-sk | rsa]
[-w provider] [-Z cipher]

Reviewed at https://reviews.imfreedom.org/r/2418/
--- a/docs/includes/hostkeys.md Sat Apr 01 22:49:52 2023 -0500
+++ b/docs/includes/hostkeys.md Mon Apr 10 01:11:47 2023 -0500
@@ -22,6 +22,6 @@
`ssh-keygen` documentation as other options are available for each type.
```
-$ ssh-keygen -t ed25519 -o host-keys/ssh_host_ed25519_key
+$ ssh-keygen -t ed25519 -f host-keys/ssh_host_ed25519_key
```