diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2019-02-05 10:41:55 -0800 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2019-02-05 10:41:55 -0800 |
commit | 74d984e0560b2cb421287395b025687e3aabe118 (patch) | |
tree | 97de4a88cb4c201b3a69b15767aa79c55c3a9b6e /cmd/podman/commands_remoteclient.go | |
parent | 650e242aa90fcb3f161da6e97921c606d3083215 (diff) | |
download | podman-74d984e0560b2cb421287395b025687e3aabe118.tar.gz podman-74d984e0560b2cb421287395b025687e3aabe118.tar.bz2 podman-74d984e0560b2cb421287395b025687e3aabe118.zip |
Add podman system prune and info commands
We are missing the equivalence of the docker system commands
This patch set adds `podman system prune`
and `podman system info`
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/commands_remoteclient.go')
-rw-r--r-- | cmd/podman/commands_remoteclient.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/commands_remoteclient.go b/cmd/podman/commands_remoteclient.go index 6701e14a1..0adbd7b4c 100644 --- a/cmd/podman/commands_remoteclient.go +++ b/cmd/podman/commands_remoteclient.go @@ -16,6 +16,10 @@ func getContainerSubCommands() []cli.Command { return []cli.Command{} } +func getSystemSubCommands() []cli.Command { + return []cli.Command{} +} + func getMainAppFlags() []cli.Flag { return []cli.Flag{} } |