mirror of
https://github.com/containers/podman.git
synced 2025-06-22 01:48:54 +08:00
Merge pull request #14470 from shanesmith/machine-force-remove-doesnt-stop
Stop machine before force removing files
This commit is contained in:
@ -831,8 +831,14 @@ func (v *MachineVM) Remove(_ string, opts machine.RemoveOptions) (string, func()
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return "", nil, err
|
return "", nil, err
|
||||||
}
|
}
|
||||||
if state == machine.Running && !opts.Force {
|
if state == machine.Running {
|
||||||
return "", nil, errors.Errorf("running vm %q cannot be destroyed", v.Name)
|
if !opts.Force {
|
||||||
|
return "", nil, errors.Errorf("running vm %q cannot be destroyed", v.Name)
|
||||||
|
}
|
||||||
|
err := v.Stop(v.Name, machine.StopOptions{})
|
||||||
|
if err != nil {
|
||||||
|
return "", nil, err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Collect all the files that need to be destroyed
|
// Collect all the files that need to be destroyed
|
||||||
|
Reference in New Issue
Block a user