Merge pull request 'cli/secrets: show hint in --help on how to retrieve a key' (#1074) from DavHau-dave into main
This commit is contained in:
@@ -116,7 +116,9 @@ def register_users_parser(parser: argparse.ArgumentParser) -> None:
|
|||||||
add_parser.add_argument("user", help="the name of the user", type=user_name_type)
|
add_parser.add_argument("user", help="the name of the user", type=user_name_type)
|
||||||
add_parser.add_argument(
|
add_parser.add_argument(
|
||||||
"key",
|
"key",
|
||||||
help="public key or private key of the user",
|
help="public key or private key of the user."
|
||||||
|
"Execute 'clan secrets key --help' on how to retrieve a key."
|
||||||
|
"To fetch an age key from an SSH host key: ssh-keyscan <domain_name> | nix shell nixpkgs#ssh-to-age -c ssh-to-age",
|
||||||
type=public_or_private_age_key_type,
|
type=public_or_private_age_key_type,
|
||||||
)
|
)
|
||||||
add_parser.set_defaults(func=add_command)
|
add_parser.set_defaults(func=add_command)
|
||||||
|
|||||||
Reference in New Issue
Block a user