diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-28 00:49:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 00:49:28 +0200 |
commit | 0ebf0bc56091d305ac064c59e20289d47bf56437 (patch) | |
tree | 793fdad75f83359305ea406f735f446a3253d5df /pkg/namespaces/namespaces.go | |
parent | 463c0b9f2d16c157e7047a2c689ff432bd0dc6ca (diff) | |
parent | 446c35efdf4f7141ec32a347385587d7b4fc2c75 (diff) | |
download | podman-0ebf0bc56091d305ac064c59e20289d47bf56437.tar.gz podman-0ebf0bc56091d305ac064c59e20289d47bf56437.tar.bz2 podman-0ebf0bc56091d305ac064c59e20289d47bf56437.zip |
Merge pull request #13611 from rvandernoort/vendor_filters
Vendor c/common for filters
Diffstat (limited to 'pkg/namespaces/namespaces.go')
-rw-r--r-- | pkg/namespaces/namespaces.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/namespaces/namespaces.go b/pkg/namespaces/namespaces.go index a7736aee0..a264a5a0f 100644 --- a/pkg/namespaces/namespaces.go +++ b/pkg/namespaces/namespaces.go @@ -254,7 +254,7 @@ func (n IpcMode) IsHost() bool { return n == hostType } -// IsShareable indicates whether the container's ipc namespace can be shared with another container. +// IsShareable indicates whether the container uses its own shareable ipc namespace which can be shared. func (n IpcMode) IsShareable() bool { return n == shareableType } |