diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-21 16:51:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-21 16:51:23 +0100 |
commit | 28d6eeb57a46b8df8960cff6bf6748c4611b61ef (patch) | |
tree | afbedcfd6da81a0d4d924c8360a220241775e0db /pkg | |
parent | fc1b1ff6919b257739371079097803b0cb1b3ed2 (diff) | |
parent | e91ec38a70f4755d06972a0b65edd1f2e5366581 (diff) | |
download | podman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.tar.gz podman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.tar.bz2 podman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.zip |
Merge pull request #2387 from baude/remotepodrm
enable podman-remote pod rm
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/varlinkapi/pods.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/varlinkapi/pods.go b/pkg/varlinkapi/pods.go index 6e758786a..1dd864d03 100644 --- a/pkg/varlinkapi/pods.go +++ b/pkg/varlinkapi/pods.go @@ -2,6 +2,7 @@ package varlinkapi import ( "encoding/json" + "github.com/containers/libpod/libpod/adapter/shortcuts" "github.com/containers/libpod/pkg/rootless" "syscall" @@ -271,3 +272,17 @@ func (i *LibpodAPI) GetPodStats(call iopodman.VarlinkCall, name string) error { } return call.ReplyGetPodStats(pod.ID(), containersStats) } + +// GetPodsByContext returns a slice of pod ids based on all, latest, or a list +func (i *LibpodAPI) GetPodsByContext(call iopodman.VarlinkCall, all, latest bool, input []string) error { + var podids []string + + pods, err := shortcuts.GetPodsByContext(all, latest, input, i.Runtime) + if err != nil { + return call.ReplyErrorOccurred(err.Error()) + } + for _, p := range pods { + podids = append(podids, p.ID()) + } + return call.ReplyGetPodsByContext(podids) +} |