summaryrefslogtreecommitdiff
path: root/cmd/podman/commands.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-02-05 10:41:55 -0800
committerDaniel J Walsh <dwalsh@redhat.com>2019-02-05 10:41:55 -0800
commit74d984e0560b2cb421287395b025687e3aabe118 (patch)
tree97de4a88cb4c201b3a69b15767aa79c55c3a9b6e /cmd/podman/commands.go
parent650e242aa90fcb3f161da6e97921c606d3083215 (diff)
downloadpodman-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.go')
-rw-r--r--cmd/podman/commands.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go
index d8fdd556f..2efcab695 100644
--- a/cmd/podman/commands.go
+++ b/cmd/podman/commands.go
@@ -53,6 +53,10 @@ func getImageSubCommands() []cli.Command {
}
}
+func getSystemSubCommands() []cli.Command {
+ return []cli.Command{infoCommand}
+}
+
func getContainerSubCommands() []cli.Command {
return []cli.Command{
attachCommand,