Skip to content

Commit

Permalink
actually reflect blob naming change when looking for running VMs
Browse files Browse the repository at this point in the history
closes #2

Signed-off-by: António Meireles <[email protected]>
  • Loading branch information
AntonioMeireles committed Nov 28, 2015
1 parent 30e6b02 commit c6adbb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ func (vm *VMInfo) isActive() bool {
return false
}
if p, _ := ps.FindProcess(vm.Pid); p == nil ||
!strings.HasPrefix(p.Executable(), "coreos") {
!strings.HasPrefix(p.Executable(), "corectl") {
clean()
return false
}
Expand Down

0 comments on commit c6adbb9

Please sign in to comment.