Skip to content

Commit 58cc2d8

Browse files
author
David vonThenen
authored
Merge pull request #102 from dvonthenen/bug/rheloutputdiff
Behavior difference between golang command output... this generates a…
2 parents 54a26cb + 7bdaed4 commit 58cc2d8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scaleio-executor/executor/pkgmgr/mgr/rexrayProcedural.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,14 +411,15 @@ scaleio:
411411
log.Infoln(types.RexRayPackageName, "is already installed")
412412
}
413413

414-
if rrInst == "" && rrInstErr == nil {
415-
log.Debugln("No previous install of", types.RexRayPackageName,
414+
if rrInst == "" {
415+
log.Infoln("No previous install of", types.RexRayPackageName,
416416
"exists. Reboot required!")
417417
log.Infoln("RexraySetup LEAVE")
418418
return true, nil
419419
}
420420

421-
log.Infoln("RexraySetup Succeeded")
421+
log.Infoln("Previous install of", types.RexRayPackageName,
422+
"exists. No reboot required.")
422423
log.Infoln("RexraySetup LEAVE")
423424
return false, nil
424425
}

0 commit comments

Comments
 (0)