Skip to content

Commit 55d2459

Browse files
committed
sigh actually start them
1 parent 07b1cc5 commit 55d2459

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subsystems/viamagent/viamagent.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ func (a *agentSubsystem) Update(ctx context.Context, cfg *pb.DeviceSubsystemConf
7272
expectedPath := filepath.Join(agent.ViamDirs["bin"], subsysName)
7373
if runtime.GOOS == "windows" {
7474
// no systemd on windows -- check if binary is runnable, then restart service.
75-
if err := exec.Command(expectedPath, "--version").Wait(); err != nil {
75+
if _, err := exec.Command(expectedPath, "--version").Output(); err != nil {
7676
return false, errw.Wrap(err, "testing binary")
7777
}
7878
// note: sc.exe doesn't have a restart command it seems.
79-
if err := exec.Command("powershell", "-command", "Restart-Service viam-agent").Wait(); err != nil {
79+
if _, err := exec.Command("powershell", "-command", "Restart-Service viam-agent").Output(); err != nil {
8080
return false, errw.Wrap(err, "restarting windows service")
8181
}
8282
return true, nil

0 commit comments

Comments
 (0)