File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,6 @@ $ limactl create --set='.cpus = 2 | .memory = "2GiB"'
56
56
To see the template list:
57
57
$ limactl create --list-templates
58
58
59
- To see the drivers list:
60
- $ limactl create --list-drivers
61
59
62
60
To create an instance "default" from a local file:
63
61
$ limactl create --name=default /usr/local/share/lima/templates/fedora.yaml
Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ type GUI interface {
49
49
GetDisplayConnection (ctx context.Context ) (string , error )
50
50
}
51
51
52
- // Snapshot defines operations for managing snapshots.
53
- type Snapshot interface {
52
+ // SnapshotManager defines operations for managing snapshots.
53
+ type SnapshotManager interface {
54
54
CreateSnapshot (ctx context.Context , tag string ) error
55
55
ApplySnapshot (ctx context.Context , tag string ) error
56
56
DeleteSnapshot (ctx context.Context , tag string ) error
@@ -84,7 +84,7 @@ type Plugin interface {
84
84
type Driver interface {
85
85
Lifecycle
86
86
GUI
87
- Snapshot
87
+ SnapshotManager
88
88
Registration
89
89
GuestAgent
90
90
Plugin
You can’t perform that action at this time.
0 commit comments