diff options
Diffstat (limited to 'libpod/adapter/shortcuts/shortcuts.go')
-rw-r--r-- | libpod/adapter/shortcuts/shortcuts.go | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/libpod/adapter/shortcuts/shortcuts.go b/libpod/adapter/shortcuts/shortcuts.go deleted file mode 100644 index 0633399ae..000000000 --- a/libpod/adapter/shortcuts/shortcuts.go +++ /dev/null @@ -1,27 +0,0 @@ -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 -} |