diff options
author | Jhon Honce <jhonce@redhat.com> | 2019-03-08 15:10:26 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2019-03-13 13:16:49 -0700 |
commit | 504a0ff72fefee5c186b8888d7df6e2aa22a6320 (patch) | |
tree | 9a03ee2084fe3ff237f08c093408d009a580a427 /cmd/podman/cliconfig | |
parent | 8b3f759800ebd6e53e0a807728ede633aa9bdb36 (diff) | |
download | podman-504a0ff72fefee5c186b8888d7df6e2aa22a6320.tar.gz podman-504a0ff72fefee5c186b8888d7df6e2aa22a6320.tar.bz2 podman-504a0ff72fefee5c186b8888d7df6e2aa22a6320.zip |
Add --replace flag to "podman container runlabel"
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1677908
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'cmd/podman/cliconfig')
-rw-r--r-- | cmd/podman/cliconfig/config.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go index ec08eedb5..38a68f94f 100644 --- a/cmd/podman/cliconfig/config.go +++ b/cmd/podman/cliconfig/config.go @@ -416,14 +416,15 @@ type RmiValues struct { type RunlabelValues struct { PodmanCommand Authfile string - Display bool CertDir string Creds string + Display bool Name string Opt1 string Opt2 string Opt3 string Quiet bool + Replace bool SignaturePolicy string TlsVerify bool } |