mirror of https://github.com/containers/podman.git
machine: Info on successfully stopping qemu machine
Spit info log whenever we successfully stop qemu machine for ack. Closes: https://github.com/containers/podman/issues/11542 [NO TESTS NEEDED] Signed-off-by: Aditya Rajan <arajan@redhat.com>
This commit is contained in:
parent
b187dfef20
commit
5a33b7aef8
|
@ -392,7 +392,12 @@ func (v *MachineVM) Stop(name string, _ machine.StopOptions) error {
|
||||||
logrus.Warn(err)
|
logrus.Warn(err)
|
||||||
}
|
}
|
||||||
// Remove socket
|
// Remove socket
|
||||||
return os.Remove(qemuSocketFile)
|
if err := os.Remove(qemuSocketFile); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("Successfully stopped machine: %s", name)
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewQMPMonitor creates the monitor subsection of our vm
|
// NewQMPMonitor creates the monitor subsection of our vm
|
||||||
|
|
Loading…
Reference in New Issue