From e91ec38a70f4755d06972a0b65edd1f2e5366581 Mon Sep 17 00:00:00 2001 From: baude Date: Wed, 20 Feb 2019 15:02:18 -0600 Subject: enable podman-remote pod rm add the ability to delete a pod from the remote client. Signed-off-by: baude --- libpod/adapter/shortcuts/shortcuts.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libpod/adapter/shortcuts/shortcuts.go (limited to 'libpod/adapter/shortcuts') diff --git a/libpod/adapter/shortcuts/shortcuts.go b/libpod/adapter/shortcuts/shortcuts.go new file mode 100644 index 000000000..0633399ae --- /dev/null +++ b/libpod/adapter/shortcuts/shortcuts.go @@ -0,0 +1,27 @@ +package shortcuts + +import "github.com/containers/libpod/libpod" + +// GetPodsByContext gets pods whether all, latest, or a slice of names/ids +func GetPodsByContext(all, latest bool, pods []string, runtime *libpod.Runtime) ([]*libpod.Pod, error) { + var outpods []*libpod.Pod + if all { + return runtime.GetAllPods() + } + if latest { + p, err := runtime.GetLatestPod() + if err != nil { + return nil, err + } + outpods = append(outpods, p) + return outpods, nil + } + for _, p := range pods { + pod, err := runtime.LookupPod(p) + if err != nil { + return nil, err + } + outpods = append(outpods, pod) + } + return outpods, nil +} -- cgit v1.2.3-54-g00ecf