diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-19 18:45:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 18:45:03 -0400 |
commit | 1916fe22a932183e0847e9f7b087f6ece4d7c48c (patch) | |
tree | 49a030b80ad533a4befae84274e9a72dd99ad639 /libpod | |
parent | 913caaa9b1de2b63692c9bae15120208194c9eb3 (diff) | |
parent | 9c9fc96d2756ba6ff1ef3a2e8301992d4b5ab189 (diff) | |
download | podman-1916fe22a932183e0847e9f7b087f6ece4d7c48c.tar.gz podman-1916fe22a932183e0847e9f7b087f6ece4d7c48c.tar.bz2 podman-1916fe22a932183e0847e9f7b087f6ece4d7c48c.zip |
Merge pull request #14272 from Luap99/completion2
shell completion: use more constants in the code
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/events/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/events/config.go b/libpod/events/config.go index 00cdca007..2e7016136 100644 --- a/libpod/events/config.go +++ b/libpod/events/config.go @@ -98,6 +98,8 @@ type Type string // Status describes the actual event action (stop, start, create, kill) type Status string +// When updating this list below please also update the shell completion list in +// cmd/podman/common/completion.go and the StringToXXX function in events.go. const ( // Container - event is related to containers Container Type = "container" |