diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-26 09:08:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 09:08:31 -0400 |
commit | e7c30d855f7c827f3b8f7c9fcf7465a7543e3d29 (patch) | |
tree | 2a31481c55271a98de43e19d5a312cb164b7e810 /pkg/machine/config.go | |
parent | ace6672bf1a9b011a3c414783496668b5f27f3eb (diff) | |
parent | d441a711e5590cc579ae0e0a73ea463718d4d79e (diff) | |
download | podman-e7c30d855f7c827f3b8f7c9fcf7465a7543e3d29.tar.gz podman-e7c30d855f7c827f3b8f7c9fcf7465a7543e3d29.tar.bz2 podman-e7c30d855f7c827f3b8f7c9fcf7465a7543e3d29.zip |
Merge pull request #13996 from cdoern/machine
machine starting status
Diffstat (limited to 'pkg/machine/config.go')
-rw-r--r-- | pkg/machine/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/machine/config.go b/pkg/machine/config.go index 6c2fab0e5..1103933cd 100644 --- a/pkg/machine/config.go +++ b/pkg/machine/config.go @@ -121,7 +121,7 @@ type VM interface { Set(name string, opts SetOptions) error SSH(name string, opts SSHOptions) error Start(name string, opts StartOptions) error - State() (Status, error) + State(bypass bool) (Status, error) Stop(name string, opts StopOptions) error } |