mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
730e0994c8
Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
13 lines
378 B
Go
13 lines
378 B
Go
package oci
|
|
|
|
import specs "github.com/opencontainers/runtime-spec/specs-go"
|
|
|
|
// RemoveNamespace removes the `nsType` namespace from OCI spec `s`
|
|
func RemoveNamespace(s *specs.Spec, nsType specs.NamespaceType) {
|
|
for i, n := range s.Linux.Namespaces {
|
|
if n.Type == nsType {
|
|
s.Linux.Namespaces = append(s.Linux.Namespaces[:i], s.Linux.Namespaces[i+1:]...)
|
|
return
|
|
}
|
|
}
|
|
}
|