mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			785 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			785 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build !enterprise
 | |
| 
 | |
| package command
 | |
| 
 | |
| //go:generate go run github.com/hashicorp/vault/tools/stubmaker
 | |
| 
 | |
| import (
 | |
| 	"github.com/hashicorp/vault/command/server"
 | |
| 	"github.com/hashicorp/vault/vault"
 | |
| 	"github.com/mitchellh/cli"
 | |
| )
 | |
| 
 | |
| func entInitCommands(ui, serverCmdUi cli.Ui, runOpts *RunOptions, commands map[string]cli.CommandFactory) {
 | |
| }
 | |
| 
 | |
| func entEnableFourClusterDev(c *ServerCommand, base *vault.CoreConfig, info map[string]string, infoKeys []string, devListenAddress, tempDir string) int {
 | |
| 	c.logger.Error("-dev-four-cluster only supported in enterprise Vault")
 | |
| 	return 1
 | |
| }
 | |
| 
 | |
| func entAdjustCoreConfig(config *server.Config, coreConfig *vault.CoreConfig) {
 | |
| }
 | |
| 
 | |
| func entCheckStorageType(coreConfig *vault.CoreConfig) bool {
 | |
| 	return true
 | |
| }
 | |
| 
 | |
| func entGetFIPSInfoKey() string {
 | |
| 	return ""
 | |
| }
 | 
