diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-01-08 09:04:17 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-08 09:04:17 -0800 |
commit | 757906189eabbc56a3b7e9723e9f72c3ccc654b0 (patch) | |
tree | 03b511bfb3b2b5871105f778ae570eb8e1e4a0f9 /cmd | |
parent | 9474b8cea239348d11c913b03b9461afaf663f0b (diff) | |
parent | e02199f2a401079375454acb639534c6f4f83c7f (diff) | |
download | podman-757906189eabbc56a3b7e9723e9f72c3ccc654b0.tar.gz podman-757906189eabbc56a3b7e9723e9f72c3ccc654b0.tar.bz2 podman-757906189eabbc56a3b7e9723e9f72c3ccc654b0.zip |
Merge pull request #2094 from debarshiray/wip/debarshiray/podman-start-sig-proxy-default-doc
Mention the default --sig-proxy value for 'podman start'
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/start.go | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/cmd/podman/start.go b/cmd/podman/start.go index 8bb386c68..df34deec2 100644 --- a/cmd/podman/start.go +++ b/cmd/podman/start.go @@ -27,9 +27,9 @@ var ( Name: "interactive, i", Usage: "Keep STDIN open even if not attached", }, - cli.BoolFlag{ + cli.BoolTFlag{ Name: "sig-proxy", - Usage: "proxy received signals to the process", + Usage: "proxy received signals to the process (default true if attaching, false otherwise)", }, LatestFlag, } @@ -67,8 +67,14 @@ func startCmd(c *cli.Context) error { return err } - if c.Bool("sig-proxy") && !attach { - return errors.Wrapf(libpod.ErrInvalidArg, "you cannot use sig-proxy without --attach") + sigProxy := c.BoolT("sig-proxy") + + if sigProxy && !attach { + if c.IsSet("sig-proxy") { + return errors.Wrapf(libpod.ErrInvalidArg, "you cannot use sig-proxy without --attach") + } else { + sigProxy = false + } } runtime, err := libpodruntime.GetRuntime(c) @@ -111,7 +117,7 @@ func startCmd(c *cli.Context) error { } // attach to the container and also start it not already running - err = startAttachCtr(ctr, os.Stdout, os.Stderr, inputStream, c.String("detach-keys"), c.Bool("sig-proxy"), !ctrRunning) + err = startAttachCtr(ctr, os.Stdout, os.Stderr, inputStream, c.String("detach-keys"), sigProxy, !ctrRunning) if ctrRunning { return err } |