From a6b32adc457642350cb679b9fa26aad4eb86afc8 Mon Sep 17 00:00:00 2001 From: Pilou Date: Mon, 25 Apr 2022 13:45:18 +0200 Subject: [PATCH] [doctor] authorized-keys: fix displayed check name (backport #19464) (#19484) 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 1a9b60e248..ab949b737e 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()