diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-09-09 10:43:42 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-09-09 10:45:24 -0400 |
commit | 1d7d21819138b2b1c7abd732dbf26bca5fc8e951 (patch) | |
tree | fc8f9cdb5d8851ed1724e040c7aa0f9246b2ef03 /pkg/domain | |
parent | 6b1a1fcc5cb92a9fd5800b0d1af44f26093a8153 (diff) | |
download | podman-1d7d21819138b2b1c7abd732dbf26bca5fc8e951.tar.gz podman-1d7d21819138b2b1c7abd732dbf26bca5fc8e951.tar.bz2 podman-1d7d21819138b2b1c7abd732dbf26bca5fc8e951.zip |
Fix podman container runlabel --display
Current podman container runlabel --display is being ignored.
This is just supposed to display the command that would be run, and
then exit, but instead is actually running the command.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1877186
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/infra/abi/containers_runlabel.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/containers_runlabel.go b/pkg/domain/infra/abi/containers_runlabel.go index ab2316d47..3983ba3a8 100644 --- a/pkg/domain/infra/abi/containers_runlabel.go +++ b/pkg/domain/infra/abi/containers_runlabel.go @@ -36,6 +36,11 @@ func (ic *ContainerEngine) ContainerRunlabel(ctx context.Context, label string, return err } + if options.Display { + fmt.Printf("command: %s\n", strings.Join(append([]string{os.Args[0]}, cmd[1:]...), " ")) + return nil + } + stdErr := os.Stderr stdOut := os.Stdout stdIn := os.Stdin |