agent: Add warning if windows and running server mode
This commit is contained in:
parent
064b64e510
commit
9493b9c126
|
@ -111,6 +111,11 @@ func (c *Command) readConfig() *Config {
|
|||
c.Ui.Error("WARNING: Bootstrap mode enabled! Do not enable unless necessary")
|
||||
}
|
||||
|
||||
// Warn if using windows as a server
|
||||
if config.Server && runtime.GOOS == "windows" {
|
||||
c.Ui.Error("WARNING: Windows is not recommended as a Consul server. Do not use in production.")
|
||||
}
|
||||
|
||||
return config
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue