mirror of https://github.com/containers/podman.git
wsl: machine start test
the emitted message for starting a machine that is is already started needed to be slightly altered for wsl. [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
parent
aebfde2408
commit
a112ee8959
|
@ -1111,7 +1111,7 @@ func (v *MachineVM) Set(_ string, opts machine.SetOptions) ([]error, error) {
|
|||
|
||||
func (v *MachineVM) Start(name string, opts machine.StartOptions) error {
|
||||
if v.isRunning() {
|
||||
return fmt.Errorf("%q is already running", name)
|
||||
return machine.ErrVMAlreadyRunning
|
||||
}
|
||||
|
||||
dist := toDist(name)
|
||||
|
|
Loading…
Reference in New Issue