summaryrefslogtreecommitdiff
path: root/pkg/namespaces
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-12-21 12:09:46 -0800
committerGitHub <noreply@github.com>2018-12-21 12:09:46 -0800
commitfe186c6ebba95db89463f38c6aa0f0dcc104a249 (patch)
treed2a815c62bae205b0ea80ac72ec72542c98131ce /pkg/namespaces
parentfa568e04d6b6032ca3bdf39ee4fd1ca1856be85a (diff)
parent1ad6f9af1552cbe2119af6cda83db5b3908556db (diff)
downloadpodman-fe186c6ebba95db89463f38c6aa0f0dcc104a249.tar.gz
podman-fe186c6ebba95db89463f38c6aa0f0dcc104a249.tar.bz2
podman-fe186c6ebba95db89463f38c6aa0f0dcc104a249.zip
Merge pull request #2033 from rhatdan/devices
Allow users to specify a directory for additonal devices
Diffstat (limited to 'pkg/namespaces')
-rw-r--r--pkg/namespaces/namespaces.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/namespaces/namespaces.go b/pkg/namespaces/namespaces.go
index 832efd554..11b47fec4 100644
--- a/pkg/namespaces/namespaces.go
+++ b/pkg/namespaces/namespaces.go
@@ -84,7 +84,7 @@ func (n UTSMode) Valid() bool {
// IpcMode represents the container ipc stack.
type IpcMode string
-// IsPrivate indicates whether the container uses its own private ipc namespace which can not be shared.
+// IsPrivate indicates whether the container uses its own private ipc namespace which cannot be shared.
func (n IpcMode) IsPrivate() bool {
return n == "private"
}