summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorQi Wang <qiwan@redhat.com>2020-04-29 23:47:01 -0400
committerQi Wang <qiwan@redhat.com>2020-04-29 23:47:15 -0400
commit75eeb40f41f2839dc91281e24b1094180b97a8aa (patch)
tree7809c97d047c313d6f78a5f05b075710d2f2aa50 /cmd
parent99f8cfc2dc39b11cd315062167f1ffaf85eda946 (diff)
downloadpodman-75eeb40f41f2839dc91281e24b1094180b97a8aa.tar.gz
podman-75eeb40f41f2839dc91281e24b1094180b97a8aa.tar.bz2
podman-75eeb40f41f2839dc91281e24b1094180b97a8aa.zip
testv2: enable attach test
testv2: enable attach test Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/containers/attach.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/cmd/podman/containers/attach.go b/cmd/podman/containers/attach.go
index 78b52ad1b..ee4d811d7 100644
--- a/cmd/podman/containers/attach.go
+++ b/cmd/podman/containers/attach.go
@@ -71,11 +71,18 @@ func init() {
}
func attach(cmd *cobra.Command, args []string) error {
+ if len(args) > 1 || (len(args) == 0 && !attachOpts.Latest) {
+ return errors.Errorf("attach requires the name or id of one running container or the latest flag")
+ }
+ var name string
+ if len(args) > 0 {
+ name = args[0]
+ }
attachOpts.Stdin = os.Stdin
if attachOpts.NoStdin {
attachOpts.Stdin = nil
}
attachOpts.Stdout = os.Stdout
attachOpts.Stderr = os.Stderr
- return registry.ContainerEngine().ContainerAttach(registry.GetContext(), args[0], attachOpts)
+ return registry.ContainerEngine().ContainerAttach(registry.GetContext(), name, attachOpts)
}