summaryrefslogtreecommitdiff
path: root/cmd/podman/machine
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2022-03-08 15:44:40 -0600
committerBrent Baude <bbaude@redhat.com>2022-03-08 15:47:32 -0600
commit5b51b42cc86d6fe394e13ae9dd91f2ddefdb543e (patch)
tree058fa39cea567f574df47631c2ded1b7d9338a35 /cmd/podman/machine
parentf33b64d8b7d7b2bd22560cfacc90e25d1f9e16b4 (diff)
downloadpodman-5b51b42cc86d6fe394e13ae9dd91f2ddefdb543e.tar.gz
podman-5b51b42cc86d6fe394e13ae9dd91f2ddefdb543e.tar.bz2
podman-5b51b42cc86d6fe394e13ae9dd91f2ddefdb543e.zip
machine rm -f stops and removes machine
If you want to remove a running machine, you can now pass the --force/-f to podman machine rm and the machine will be stopped and removed without confirmations. Fixes: #13448 [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/machine')
-rw-r--r--cmd/podman/machine/rm.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/machine/rm.go b/cmd/podman/machine/rm.go
index 38873084a..3e5d5fb0b 100644
--- a/cmd/podman/machine/rm.go
+++ b/cmd/podman/machine/rm.go
@@ -37,7 +37,7 @@ func init() {
flags := rmCmd.Flags()
formatFlagName := "force"
- flags.BoolVar(&destoryOptions.Force, formatFlagName, false, "Do not prompt before rming")
+ flags.BoolVarP(&destoryOptions.Force, formatFlagName, "f", false, "Stop and do not prompt before rming")
keysFlagName := "save-keys"
flags.BoolVar(&destoryOptions.SaveKeys, keysFlagName, false, "Do not delete SSH keys")
@@ -64,7 +64,7 @@ func rm(cmd *cobra.Command, args []string) error {
if err != nil {
return err
}
- confirmationMessage, remove, err := vm.Remove(vmName, machine.RemoveOptions{})
+ confirmationMessage, remove, err := vm.Remove(vmName, destoryOptions)
if err != nil {
return err
}