Merge pull request #14470 from shanesmith/machine-force-remove-doesnt-stop

Stop machine before force removing files
This commit is contained in:
OpenShift Merge Robot 2022-06-03 04:29:02 -04:00 committed by GitHub
commit f7a54088c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -831,8 +831,14 @@ func (v *MachineVM) Remove(_ string, opts machine.RemoveOptions) (string, func()
if err != nil {
return "", nil, err
}
if state == machine.Running && !opts.Force {
return "", nil, errors.Errorf("running vm %q cannot be destroyed", v.Name)
if state == machine.Running {
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