mirror of
https://github.com/containers/podman.git
synced 2026-03-19 23:29:00 -04:00
It should be avoided to import cmd/podman/... packages from outside of cmd/podman. This can lead in weird hard to debug import paths but also can have negative consequences when imported in unit tests. In this case it will set XDG_CONFIG_HOME and thus the machine tests this dir over the tmp HOME env variable which is set at a later point. This caused machine files to be leaked into the actual users home dir. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
19 lines
360 B
Go
19 lines
360 B
Go
package entities
|
|
|
|
type ListReporter struct {
|
|
Name string
|
|
Default bool
|
|
Created string
|
|
Running bool
|
|
Starting bool
|
|
LastUp string
|
|
Stream string
|
|
VMType string
|
|
CPUs uint64
|
|
Memory string
|
|
DiskSize string
|
|
Port int
|
|
RemoteUsername string
|
|
IdentityPath string
|
|
}
|