Add 'Machine %q started' message when podman machine start successful

Currently users are confused if podman machine prints warnings about
whether or not podman machine was successful.  Printing this message
clears up the confusion.

[NO TESTS NEEDED] Since we don't have a way to test podman machine in
ci/cd system

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2021-09-08 13:26:04 -04:00
parent 26c8549ae3
commit ab272d1e9b

View File

@ -3,6 +3,8 @@
package machine
import (
"fmt"
"github.com/containers/podman/v3/cmd/podman/registry"
"github.com/containers/podman/v3/pkg/machine"
"github.com/containers/podman/v3/pkg/machine/qemu"
@ -58,5 +60,9 @@ func start(cmd *cobra.Command, args []string) error {
if err != nil {
return err
}
return vm.Start(vmName, machine.StartOptions{})
if err := vm.Start(vmName, machine.StartOptions{}); err != nil {
return err
}
fmt.Printf("Machine %q started successfully\n", vmName)
return nil
}