@@ -9,19 +9,43 @@ import (
9
9
"strings"
10
10
"time"
11
11
12
+ hostagentclient "github.com/lima-vm/lima/pkg/hostagent/api/client"
12
13
hostagentevents "github.com/lima-vm/lima/pkg/hostagent/events"
14
+ "github.com/lima-vm/lima/pkg/limayaml"
13
15
"github.com/lima-vm/lima/pkg/osutil"
14
16
"github.com/lima-vm/lima/pkg/store"
15
17
"github.com/lima-vm/lima/pkg/store/filenames"
16
18
"github.com/sirupsen/logrus"
17
19
)
18
20
19
- func StopGracefully (inst * store.Instance ) error {
20
- // TODO: support store.StatusSuspended
21
- if inst .Status != store .StatusRunning {
21
+ func StopGracefully (inst * store.Instance , saveOnStop bool ) error {
22
+ if inst .Status == store .StatusSaved {
23
+ if saveOnStop {
24
+ return fmt .Errorf ("Instance %q is already saved" , inst .Name )
25
+ }
26
+ return fmt .Errorf ("Instance %q is saved. To stop, run `limactl start %s && limactl stop %s`" , inst .Name , inst .Name , inst .Name )
27
+ } else if inst .Status != store .StatusRunning {
22
28
return fmt .Errorf ("expected status %q, got %q (maybe use `limactl stop -f`?)" , store .StatusRunning , inst .Status )
23
29
}
24
30
31
+ if inst .VMType == limayaml .VZ {
32
+ haSock := filepath .Join (inst .Dir , filenames .HostAgentSock )
33
+ haClient , err := hostagentclient .NewHostAgentClient (haSock )
34
+ if err != nil {
35
+ logrus .WithError (err ).Error ("Failed to create a host agent client" )
36
+ }
37
+ ctx , cancel := context .WithTimeout (context .TODO (), 3 * time .Second )
38
+ defer cancel ()
39
+ disableSaveOnStopConfig := struct {
40
+ SaveOnStop bool `json:"saveOnStop"`
41
+ }{SaveOnStop : saveOnStop }
42
+ _ , err = haClient .DriverConfig (ctx , disableSaveOnStopConfig )
43
+ if err != nil {
44
+ return fmt .Errorf ("failed to disable saveOnStop: %w" , err )
45
+ }
46
+ } else if saveOnStop {
47
+ return fmt .Errorf ("save is not supported for %q" , inst .VMType )
48
+ }
25
49
begin := time .Now () // used for logrus propagation
26
50
logrus .Infof ("Sending SIGINT to hostagent process %d" , inst .HostAgentPID )
27
51
if err := osutil .SysKill (inst .HostAgentPID , osutil .SigInt ); err != nil {
0 commit comments