diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-10-01 06:31:36 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-10-01 06:32:57 -0400 |
commit | 686ea56480ad80e432a08933fa5f37d48f2ed827 (patch) | |
tree | ef7ee5d0d4caa33c80eaa91c90be7d8353cfd5ae /pkg/domain/entities/volumes.go | |
parent | 556117c2e95bb0e4da7d36e10d94c3ec0ac4072f (diff) | |
download | podman-686ea56480ad80e432a08933fa5f37d48f2ed827.tar.gz podman-686ea56480ad80e432a08933fa5f37d48f2ed827.tar.bz2 podman-686ea56480ad80e432a08933fa5f37d48f2ed827.zip |
Volume prune should not pass down the force flag
podman volume prune -f
Should just tell the prune command to not prompt for confirmation.
It should not be passing the prune flag into the API.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/domain/entities/volumes.go')
-rw-r--r-- | pkg/domain/entities/volumes.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/domain/entities/volumes.go b/pkg/domain/entities/volumes.go index 53d30ffdf..fb8466d04 100644 --- a/pkg/domain/entities/volumes.go +++ b/pkg/domain/entities/volumes.go @@ -113,10 +113,6 @@ type VolumeInspectReport struct { *VolumeConfigResponse } -type VolumePruneOptions struct { - Force bool -} - type VolumePruneReport struct { Err error Id string //nolint |