From 5c08ff58d784bf04d60a102e83a6fb8f7a45567d Mon Sep 17 00:00:00 2001
From: Ed Santiago <santiago@redhat.com>
Date: Wed, 27 Feb 2019 14:08:58 -0700
Subject: [PATCH] podman create: disable interspersed opts

With the change to cobra, the following command fails:

   # podman create alpine sh -c /bin/true
   Error: unknown shorthand flag: 'c' in -c

(Correct behavior is to pass '-c' to the container command)

This PR corrects that.

Signed-off-by: Ed Santiago <santiago@redhat.com>
---
 cmd/podman/create.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/podman/create.go b/cmd/podman/create.go
index 2d93c149a7..696d10d8e1 100644
--- a/cmd/podman/create.go
+++ b/cmd/podman/create.go
@@ -67,7 +67,7 @@ func init() {
 
 	getCreateFlags(&createCommand.PodmanCommand)
 	flags := createCommand.Flags()
-	flags.SetInterspersed(true)
+	flags.SetInterspersed(false)
 
 }