diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-29 08:51:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-29 08:51:26 +0000 |
commit | d7121b000fbdda8b28343a58a4f2c0009286e633 (patch) | |
tree | 1991c185ac8ffa1b855e679f79b7b5e66db9473b /pkg/machine/qemu/config.go | |
parent | 4608b8b98f584d1615bc7c6d1046a579ef0edd2b (diff) | |
parent | 59a7ac210b56865540131c73777a90ebe96c591c (diff) | |
download | podman-d7121b000fbdda8b28343a58a4f2c0009286e633.tar.gz podman-d7121b000fbdda8b28343a58a4f2c0009286e633.tar.bz2 podman-d7121b000fbdda8b28343a58a4f2c0009286e633.zip |
Merge pull request #14666 from shanesmith/machine-pidfile
Make `podman machine stop` wait for qemu to exit
Diffstat (limited to 'pkg/machine/qemu/config.go')
-rw-r--r-- | pkg/machine/qemu/config.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/machine/qemu/config.go b/pkg/machine/qemu/config.go index 56c95e3b3..bada1af9b 100644 --- a/pkg/machine/qemu/config.go +++ b/pkg/machine/qemu/config.go @@ -72,8 +72,10 @@ type MachineVM struct { Mounts []machine.Mount // Name of VM Name string - // PidFilePath is the where the PID file lives + // PidFilePath is the where the Proxy PID file lives PidFilePath machine.VMFile + // VMPidFilePath is the where the VM PID file lives + VMPidFilePath machine.VMFile // QMPMonitor is the qemu monitor object for sending commands QMPMonitor Monitor // ReadySocket tells host when vm is booted |