mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	fix: correct doctor commands and rename to forgejo
The syntax is `doctor check --run` , see https://forgejo.org/docs/latest/admin/command-line/#doctor
(cherry picked from commit 94af0e53e5)
	
	
This commit is contained in:
		
					parent
					
						
							
								3dbe5be281
							
						
					
				
			
			
				commit
				
					
						402cf29da6
					
				
			
		
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -75,9 +75,9 @@ func checkAuthorizedKeys(ctx context.Context, logger log.Logger, autofix bool) e
 | 
				
			||||||
			logger.Critical(
 | 
								logger.Critical(
 | 
				
			||||||
				"authorized_keys file %q is out of date.\nRegenerate it with:\n\t\"%s\"\nor\n\t\"%s\"",
 | 
									"authorized_keys file %q is out of date.\nRegenerate it with:\n\t\"%s\"\nor\n\t\"%s\"",
 | 
				
			||||||
				fPath,
 | 
									fPath,
 | 
				
			||||||
				"gitea admin regenerate keys",
 | 
									"forgejo admin regenerate keys",
 | 
				
			||||||
				"gitea doctor --run authorized-keys --fix")
 | 
									"forgejo doctor check --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"`)
 | 
								return fmt.Errorf(`authorized_keys is out of date and should be regenerated with "forgejo admin regenerate keys" or "forgejo doctor check --run authorized-keys --fix"`)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		logger.Warn("authorized_keys is out of date. Attempting rewrite...")
 | 
							logger.Warn("authorized_keys is out of date. Attempting rewrite...")
 | 
				
			||||||
		err = asymkey_model.RewriteAllPublicKeys(ctx)
 | 
							err = asymkey_model.RewriteAllPublicKeys(ctx)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue