summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/podman/start.go16
-rw-r--r--test/e2e/run_restart_test.go2
2 files changed, 2 insertions, 16 deletions
diff --git a/cmd/podman/start.go b/cmd/podman/start.go
index 597ed29ae..00d153904 100644
--- a/cmd/podman/start.go
+++ b/cmd/podman/start.go
@@ -3,7 +3,6 @@ package main
import (
"fmt"
"os"
- "strconv"
"github.com/pkg/errors"
"github.com/projectatomic/libpod/libpod"
@@ -91,20 +90,7 @@ func startCmd(c *cli.Context) error {
continue
}
- // We can only be interactive if both the config and the command-line say so
- if c.Bool("interactive") && !ctr.Config().Stdin {
- return errors.Errorf("the container was not created with the interactive option")
- }
-
- tty, err := strconv.ParseBool(ctr.Spec().Annotations["io.kubernetes.cri-o.TTY"])
- if err != nil {
- return errors.Wrapf(err, "unable to parse annotations in %s", ctr.ID())
- }
-
- // Handle start --attach
- // We only get a terminal session if both a tty was specified in the spec and
- // -a on the command-line was given.
- if attach && tty {
+ if attach {
inputStream := os.Stdin
if !c.Bool("interactive") {
inputStream = nil
diff --git a/test/e2e/run_restart_test.go b/test/e2e/run_restart_test.go
index 72a48987d..84eb69b0c 100644
--- a/test/e2e/run_restart_test.go
+++ b/test/e2e/run_restart_test.go
@@ -46,7 +46,7 @@ var _ = Describe("Podman run restart containers", func() {
killSession.WaitWithDefaultTimeout()
Expect(killSession.ExitCode()).To(Equal(0))
- session2 := podmanTest.Podman([]string{"start", "--attach", "test1"})
+ session2 := podmanTest.Podman([]string{"start", "test1"})
session2.WaitWithDefaultTimeout()
Expect(session2.ExitCode()).To(Equal(0))
})