зеркало из https://github.com/microsoft/docker.git
14 строки
383 B
Go
14 строки
383 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.LinuxNamespaceType) {
|
|
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
|
|
}
|
|
}
|
|
}
|