agent: Don't attempt migration on new server

This commit is contained in:
Ryan Uber 2015-04-10 19:41:09 -07:00
parent 9c4cf509a8
commit 9c85ea0c47
1 changed files with 7 additions and 0 deletions

View File

@ -603,6 +603,12 @@ func (c *Command) Run(args []string) int {
// and we have data from a previous Consul version, attempt to
// migrate the data from LMDB to BoltDB using the migrator utility.
if config.Server {
// If the data dir doesn't exist yet (first start), then don't
// attempt to migrate.
if _, err := os.Stat(config.DataDir); os.IsNotExist(err) {
goto AFTER_MIGRATE
}
m, err := migrator.New(config.DataDir)
if err != nil {
c.Ui.Error(err.Error())
@ -621,6 +627,7 @@ func (c *Command) Run(args []string) int {
}
}
AFTER_MIGRATE:
// Create the agent
if err := c.setupAgent(config, logOutput, logWriter); err != nil {
return 1