diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-12 20:12:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 20:12:19 +0100 |
commit | 3f0661639c3ef3b18e4437f00075352df0af6cee (patch) | |
tree | fd2e33452247373b176f70ff2ab6c5f503527d92 /pkg/domain | |
parent | f69fcb24832780a9cc4fd17818967374fcb0710f (diff) | |
parent | fde6ad637355ee27929da084e2920ef2b730875c (diff) | |
download | podman-3f0661639c3ef3b18e4437f00075352df0af6cee.tar.gz podman-3f0661639c3ef3b18e4437f00075352df0af6cee.tar.bz2 podman-3f0661639c3ef3b18e4437f00075352df0af6cee.zip |
Merge pull request #12151 from rhatdan/noout
Add --noout option to prevent the output of ids
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/entities/engine.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine.go b/pkg/domain/entities/engine.go index a8023f7cf..055af7ff9 100644 --- a/pkg/domain/entities/engine.go +++ b/pkg/domain/entities/engine.go @@ -40,6 +40,7 @@ type PodmanConfig struct { Identity string // ssh identity for connecting to server MaxWorks int // maximum number of parallel threads MemoryProfile string // Hidden: Should memory profile be taken + NoOut bool // Don't output to stdout RegistriesConf string // allows for specifying a custom registries.conf Remote bool // Connection to Podman API Service will use RESTful API RuntimePath string // --runtime flag will set Engine.RuntimePath |