summaryrefslogtreecommitdiff
path: root/pkg/adapter/shortcuts/shortcuts.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-02-22 11:07:18 -0600
committerbaude <bbaude@redhat.com>2019-02-22 17:00:24 -0600
commit4bf973a9f61eae3b02925a42ccfa784baeb917dc (patch)
tree60e9ea8473b2f33c39e46f3954e3e4201a63dc63 /pkg/adapter/shortcuts/shortcuts.go
parentc00bf28f24e2eed435c156cd1aabe59c10fe9824 (diff)
downloadpodman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.gz
podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.bz2
podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.zip
Enable more podman-remote pod commands
enable pod start, stop, and kill subcommands for the remote-client. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/adapter/shortcuts/shortcuts.go')
-rw-r--r--pkg/adapter/shortcuts/shortcuts.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkg/adapter/shortcuts/shortcuts.go b/pkg/adapter/shortcuts/shortcuts.go
new file mode 100644
index 000000000..0633399ae
--- /dev/null
+++ b/pkg/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
+}