diff options
author | baude <bbaude@redhat.com> | 2018-04-02 09:20:13 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-04-03 22:23:23 +0000 |
commit | 35a10c9ba541807b96b01cc66f79c72606d9ed99 (patch) | |
tree | 86bc9000c6b161fd53023f33ae4fa37ee22fcb53 /cmd | |
parent | b1a8d769b84c52ea5ea74263cff6f582b1bdfcf0 (diff) | |
download | podman-35a10c9ba541807b96b01cc66f79c72606d9ed99.tar.gz podman-35a10c9ba541807b96b01cc66f79c72606d9ed99.tar.bz2 podman-35a10c9ba541807b96b01cc66f79c72606d9ed99.zip |
Only allocate tty when -t
In our ezrly development, we always allocated a tty when not -d. Now we should only allocated when the user asks for it.
Resolves: #573
Signed-off-by: baude <bbaude@redhat.com>
Closes: #574
Approved by: rhatdan
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/create.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cmd/podman/create.go b/cmd/podman/create.go index fe6d30c9e..a25f31717 100644 --- a/cmd/podman/create.go +++ b/cmd/podman/create.go @@ -447,13 +447,7 @@ func parseCreateOpts(c *cli.Context, runtime *libpod.Runtime, imageName string, return nil, err } - // Because we cannot do a non-terminal attach, we need to set tty to true - // if detach is not false - // TODO Allow non-terminal attach tty := c.Bool("tty") - if !c.Bool("detach") && !tty { - tty = true - } pidMode := container.PidMode(c.String("pid")) if !pidMode.Valid() { |