mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 10:37:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			559 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			559 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: MPL-2.0
 | |
| 
 | |
| package command
 | |
| 
 | |
| import (
 | |
| 	"github.com/hashicorp/vault/command/server"
 | |
| 	"github.com/hashicorp/vault/vault"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	adjustCoreConfigForEnt = adjustCoreConfigForEntNoop
 | |
| 	storageSupportedForEnt = checkStorageTypeForEntNoop
 | |
| )
 | |
| 
 | |
| func adjustCoreConfigForEntNoop(config *server.Config, coreConfig *vault.CoreConfig) {
 | |
| }
 | |
| 
 | |
| var getFIPSInfoKey = getFIPSInfoKeyNoop
 | |
| 
 | |
| func getFIPSInfoKeyNoop() string {
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func checkStorageTypeForEntNoop(coreConfig *vault.CoreConfig) bool {
 | |
| 	return true
 | |
| }
 | 
