summaryrefslogtreecommitdiff
path: root/pkg/domain
diff options
context:
space:
mode:
authorSujil02 <sushah@redhat.com>2020-05-21 18:23:12 -0400
committerSujil02 <sushah@redhat.com>2020-05-22 07:49:55 -0400
commita61f9fd54703c2e77ede4e0e1504f2e499eb5baf (patch)
treee60bccf54ec9b9615298db82f4687d5edd21849b /pkg/domain
parent05a061282c02331425e1caceae80c6b44b7dc9ec (diff)
downloadpodman-a61f9fd54703c2e77ede4e0e1504f2e499eb5baf.tar.gz
podman-a61f9fd54703c2e77ede4e0e1504f2e499eb5baf.tar.bz2
podman-a61f9fd54703c2e77ede4e0e1504f2e499eb5baf.zip
Removes remote system reset functionality. skip e2e test for remote.
As system reset too dangerous for remote use, deleting the functionality and the test case. Signed-off-by: Sujil02 <sushah@redhat.com>
Diffstat (limited to 'pkg/domain')
-rw-r--r--pkg/domain/infra/tunnel/system.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkg/domain/infra/tunnel/system.go b/pkg/domain/infra/tunnel/system.go
index 829af31f6..109e6c1d7 100644
--- a/pkg/domain/infra/tunnel/system.go
+++ b/pkg/domain/infra/tunnel/system.go
@@ -27,11 +27,6 @@ func (ic *ContainerEngine) SystemPrune(ctx context.Context, options entities.Sys
return system.Prune(ic.ClientCxt, &options.All, &options.Volume)
}
-// Reset removes all storage
-func (ic *SystemEngine) Reset(ctx context.Context) error {
- return system.Reset(ic.ClientCxt)
-}
-
func (ic *ContainerEngine) SystemDf(ctx context.Context, options entities.SystemDfOptions) (*entities.SystemDfReport, error) {
return system.DiskUsage(ic.ClientCxt)
}