summaryrefslogtreecommitdiff
path: root/cmd/podman/utils.go
diff options
context:
space:
mode:
authorhaircommander <pehunt@redhat.com>2018-07-19 14:58:48 -0400
committerhaircommander <pehunt@redhat.com>2018-07-20 08:44:44 -0400
commit17f257140eaecbe39f679d27df85573eb15a7d51 (patch)
tree0cffee6b81f006b89ca01c08148e17711acf532b /cmd/podman/utils.go
parentba1871dac033783ab0329c9b3c9113a34a90992f (diff)
downloadpodman-17f257140eaecbe39f679d27df85573eb15a7d51.tar.gz
podman-17f257140eaecbe39f679d27df85573eb15a7d51.tar.bz2
podman-17f257140eaecbe39f679d27df85573eb15a7d51.zip
Added pod start and stop
As well as added tests, man pages, and completions. Also reformatted and refactored a couple of other small things in the other pod commands. Signed-off-by: haircommander <pehunt@redhat.com>
Diffstat (limited to 'cmd/podman/utils.go')
-rw-r--r--cmd/podman/utils.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmd/podman/utils.go b/cmd/podman/utils.go
index 21bc1ae74..9d9e760d6 100644
--- a/cmd/podman/utils.go
+++ b/cmd/podman/utils.go
@@ -11,6 +11,7 @@ import (
"github.com/pkg/errors"
"github.com/projectatomic/libpod/libpod"
"github.com/sirupsen/logrus"
+ "github.com/urfave/cli"
"golang.org/x/crypto/ssh/terminal"
"k8s.io/client-go/tools/remotecommand"
)
@@ -156,3 +157,20 @@ func (f *RawTtyFormatter) Format(entry *logrus.Entry) ([]byte, error) {
return bytes, err
}
+
+func checkMutuallyExclusiveFlags(c *cli.Context) error {
+ argLen := len(c.Args())
+ if (c.Bool("all") || c.Bool("latest")) && argLen > 0 {
+ return errors.Errorf("no arguments are needed with --all or --latest")
+ }
+ if c.Bool("all") && c.Bool("latest") {
+ return errors.Errorf("--all and --latest cannot be used together")
+ }
+ if argLen < 1 && !c.Bool("all") && !c.Bool("latest") {
+ return errors.Errorf("you must provide at least one pod name or id")
+ }
+ if err := validateFlags(c, startFlags); err != nil {
+ return err
+ }
+ return nil
+}