diff options
author | Brent Baude <bbaude@redhat.com> | 2022-04-26 16:04:57 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2022-04-28 13:32:21 -0500 |
commit | 2902d32c4989a6c391d713fab7eb567eaac9d4cb (patch) | |
tree | 22d3006d7ea6af3b4a5e97e7ff1ab61cf9a8076b /cmd/podman/machine | |
parent | f722879d3b9ad038f2bf84017c8343f19806a11e (diff) | |
download | podman-2902d32c4989a6c391d713fab7eb567eaac9d4cb.tar.gz podman-2902d32c4989a6c391d713fab7eb567eaac9d4cb.tar.bz2 podman-2902d32c4989a6c391d713fab7eb567eaac9d4cb.zip |
Refactor machine inspect
I was asked to refactor machine inspect output to represent more common
and basic information. machine inspect now has information that would
be appropriate for different machines.
[NO NEW TESTS NEEDED]
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/machine')
-rw-r--r-- | cmd/podman/machine/inspect.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/cmd/podman/machine/inspect.go b/cmd/podman/machine/inspect.go index 1884cf94d..68706226a 100644 --- a/cmd/podman/machine/inspect.go +++ b/cmd/podman/machine/inspect.go @@ -59,16 +59,12 @@ func inspect(cmd *cobra.Command, args []string) error { errs = append(errs, err) continue } - state, err := vm.State(false) + ii, err := vm.Inspect() if err != nil { errs = append(errs, err) continue } - ii := machine.InspectInfo{ - State: state, - VM: vm, - } - vms = append(vms, ii) + vms = append(vms, *ii) } if len(inspectFlag.format) > 0 { // need jhonce to work his template magic |