mirror of
https://github.com/containers/podman.git
synced 2025-05-31 15:42:48 +08:00
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:
@ -392,7 +392,12 @@ func (v *MachineVM) Stop(name string, _ machine.StopOptions) error {
|
||||
logrus.Warn(err)
|
||||
}
|
||||
// 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
|
||||
|
Reference in New Issue
Block a user