summaryrefslogtreecommitdiff
path: root/cmd/podman/machine/stop.go
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2022-04-04 13:04:40 -0700
committerJhon Honce <jhonce@redhat.com>2022-05-03 13:49:01 -0700
commit8da5f3f733273245dd4e86324ca88bf8e4ede37a (patch)
tree2c87e85d53cf01763fec61464e5a208b18de83ae /cmd/podman/machine/stop.go
parent1e0c50df38ff955011f7ebb83a0268f3f1cd2841 (diff)
downloadpodman-8da5f3f733273245dd4e86324ca88bf8e4ede37a.tar.gz
podman-8da5f3f733273245dd4e86324ca88bf8e4ede37a.tar.bz2
podman-8da5f3f733273245dd4e86324ca88bf8e4ede37a.zip
Add podman machine events
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'cmd/podman/machine/stop.go')
-rw-r--r--cmd/podman/machine/stop.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/podman/machine/stop.go b/cmd/podman/machine/stop.go
index e6bf3cf2b..dcb124dd4 100644
--- a/cmd/podman/machine/stop.go
+++ b/cmd/podman/machine/stop.go
@@ -7,6 +7,7 @@ import (
"fmt"
"github.com/containers/podman/v4/cmd/podman/registry"
+ "github.com/containers/podman/v4/libpod/events"
"github.com/containers/podman/v4/pkg/machine"
"github.com/spf13/cobra"
)
@@ -49,5 +50,6 @@ func stop(cmd *cobra.Command, args []string) error {
return err
}
fmt.Printf("Machine %q stopped successfully\n", vmName)
+ newMachineEvent(events.Stop, events.Event{Name: vmName})
return nil
}