diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-26 10:39:58 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-26 10:44:17 -0500 |
commit | 0e82dece772b37fe9996f28738f80b13749490f2 (patch) | |
tree | 74499e8f7d35b2f2761713da492acbbb5b960cd1 /cmd | |
parent | 13c1d2c6af211ade30eeb01d02af7fbf94f2582d (diff) | |
download | podman-0e82dece772b37fe9996f28738f80b13749490f2.tar.gz podman-0e82dece772b37fe9996f28738f80b13749490f2.tar.bz2 podman-0e82dece772b37fe9996f28738f80b13749490f2.zip |
enable run_restart integration tests
also, correct arg processing mistake in start
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/containers/start.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/containers/start.go b/cmd/podman/containers/start.go index 73f37e51f..381bf8e26 100644 --- a/cmd/podman/containers/start.go +++ b/cmd/podman/containers/start.go @@ -20,7 +20,6 @@ var ( Short: "Start one or more containers", Long: startDescription, RunE: start, - Args: cobra.MinimumNArgs(1), Example: `podman start --latest podman start 860a4b231279 5421ab43b45 podman start --interactive --attach imageID`, @@ -72,6 +71,9 @@ func init() { func start(cmd *cobra.Command, args []string) error { var errs utils.OutputErrors + if len(args) == 0 && !startOptions.Latest { + return errors.New("start requires at least one argument") + } if len(args) > 1 && startOptions.Attach { return errors.Errorf("you cannot start and attach multiple containers at once") } |