summaryrefslogtreecommitdiff
path: root/pkg/machine/wsl/machine.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-28 16:21:33 -0400
committerGitHub <noreply@github.com>2022-04-28 16:21:33 -0400
commit765c8818e4ad7730b4d1a79bf33c3c3735c0a0e5 (patch)
treef9ba2281b8be875ea10e2bf0f927b1dcad2e1249 /pkg/machine/wsl/machine.go
parent2e9f792e378491acc3c04ba389ec7cf15bef471e (diff)
parent2902d32c4989a6c391d713fab7eb567eaac9d4cb (diff)
downloadpodman-765c8818e4ad7730b4d1a79bf33c3c3735c0a0e5.tar.gz
podman-765c8818e4ad7730b4d1a79bf33c3c3735c0a0e5.tar.bz2
podman-765c8818e4ad7730b4d1a79bf33c3c3735c0a0e5.zip
Merge pull request #14033 from baude/inspectredo
Refactor machine inspect
Diffstat (limited to 'pkg/machine/wsl/machine.go')
-rw-r--r--pkg/machine/wsl/machine.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/machine/wsl/machine.go b/pkg/machine/wsl/machine.go
index 1f1f2dcaf..addcb7c8a 100644
--- a/pkg/machine/wsl/machine.go
+++ b/pkg/machine/wsl/machine.go
@@ -155,7 +155,7 @@ type Provider struct{}
type MachineVM struct {
// IdentityPath is the fq path to the ssh priv key
IdentityPath string
- // IgnitionFilePath is the fq path to the .ign file
+ // ImageStream is the version of fcos being used
ImageStream string
// ImagePath is the fq path to
ImagePath string
@@ -1387,3 +1387,7 @@ func (v *MachineVM) setRootful(rootful bool) error {
}
return nil
}
+
+func (v *MachineVM) Inspect() (*machine.InspectInfo, error) {
+ return nil, define.ErrNotImplemented
+}