Skip to content

Commit cce12c0

Browse files
committed
store: add StatusSuspended to the Instance Status
Signed-off-by: Norio Nomura <[email protected]>
1 parent 7e1160d commit cce12c0

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pkg/store/instance.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ const (
3636
StatusBroken Status = "Broken"
3737
StatusStopped Status = "Stopped"
3838
StatusRunning Status = "Running"
39+
StatusSuspended Status = "Suspended"
3940
)
4041

4142
type Instance struct {
@@ -198,7 +199,15 @@ func inspectStatusWithPIDFiles(instDir string, inst *Instance, y *limayaml.LimaY
198199
case inst.HostAgentPID > 0 && inst.DriverPID > 0:
199200
inst.Status = StatusRunning
200201
case inst.HostAgentPID == 0 && inst.DriverPID == 0:
201-
inst.Status = StatusStopped
202+
_, err = os.Stat(filepath.Join(instDir, filenames.VzMachineState))
203+
if err == nil {
204+
inst.Status = StatusSuspended
205+
} else if errors.Is(err, os.ErrNotExist) {
206+
inst.Status = StatusStopped
207+
} else {
208+
inst.Errors = append(inst.Errors, err)
209+
inst.Status = StatusBroken
210+
}
202211
case inst.HostAgentPID > 0 && inst.DriverPID == 0:
203212
inst.Errors = append(inst.Errors, errors.New("host agent is running but driver is not"))
204213
inst.Status = StatusBroken

0 commit comments

Comments
 (0)