516b8cf2be
Reimplement windows service restart part using svc, add recovery for failed service startup. Added restart-service cmd, to execute self restart in a separate process. Addressed issues: https://storjlabs.atlassian.net/browse/SG-49 https://storjlabs.atlassian.net/browse/SG-136 https://storjlabs.atlassian.net/browse/SG-137 Change-Id: Ic51d9a99e8c1c10800c6c60ff4e218321c674fea
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
// +build unittest !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"storj.io/storj/private/version/checker"
|
|
)
|
|
|
|
// loopFunc is func that is run by the update cycle.
|
|
func loopFunc(ctx context.Context) error {
|
|
zap.L().Info("Downloading versions.", zap.String("Server Address", runCfg.ServerAddress))
|
|
|
|
all, err := checker.New(runCfg.ClientConfig).All(ctx)
|
|
if err != nil {
|
|
zap.L().Error("Error retrieving version info.", zap.Error(err))
|
|
return nil
|
|
}
|
|
|
|
if err := update(ctx, runCfg.ServiceName, runCfg.BinaryLocation, all.Processes.Storagenode); err != nil {
|
|
// don't finish loop in case of error just wait for another execution
|
|
zap.L().Error("Error updating service.", zap.String("Service", runCfg.ServiceName), zap.Error(err))
|
|
}
|
|
|
|
updaterBinName := os.Args[0]
|
|
if err := update(ctx, updaterServiceName, updaterBinName, all.Processes.StoragenodeUpdater); err != nil {
|
|
// don't finish loop in case of error just wait for another execution
|
|
zap.L().Error("Error updating service.", zap.String("Service", updaterServiceName), zap.Error(err))
|
|
}
|
|
|
|
return nil
|
|
}
|