From cdf0bb37b7146ec7d6e7b4c0bb0f0fd71b37ae14 Mon Sep 17 00:00:00 2001 From: Pilou Date: Sun, 24 Apr 2022 20:06:33 +0200 Subject: [PATCH] [doctor] authorized-keys: fix displayed check name (backport #19464) The registered check name is authorized-keys, not authorized_keys. --- modules/doctor/authorizedkeys.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/doctor/authorizedkeys.go b/modules/doctor/authorizedkeys.go index 1a9b60e24828d..ab949b737e4a7 100644 --- a/modules/doctor/authorizedkeys.go +++ b/modules/doctor/authorizedkeys.go @@ -71,8 +71,8 @@ func checkAuthorizedKeys(logger log.Logger, autofix bool) error { "authorized_keys file %q is out of date.\nRegenerate it with:\n\t\"%s\"\nor\n\t\"%s\"", fPath, "gitea admin regenerate keys", - "gitea doctor --run authorized_keys --fix") - return fmt.Errorf(`authorized_keys is out of date and should be regenerated with "gitea admin regenerate keys" or "gitea doctor --run authorized_keys --fix"`) + "gitea doctor --run authorized-keys --fix") + return fmt.Errorf(`authorized_keys is out of date and should be regenerated with "gitea admin regenerate keys" or "gitea doctor --run authorized-keys --fix"`) } logger.Warn("authorized_keys is out of date. Attempting rewrite...") err = asymkey_model.RewriteAllPublicKeys()