2018-02-05 16:05:59 -05:00
|
|
|
package oci // import "github.com/docker/docker/oci"
|
2016-11-22 16:42:11 -05:00
|
|
|
|
2019-08-05 10:37:47 -04:00
|
|
|
import specs "github.com/opencontainers/runtime-spec/specs-go"
|
2016-11-22 16:42:11 -05:00
|
|
|
|
|
|
|
// RemoveNamespace removes the `nsType` namespace from OCI spec `s`
|
2017-04-27 17:52:47 -04:00
|
|
|
func RemoveNamespace(s *specs.Spec, nsType specs.LinuxNamespaceType) {
|
2016-11-22 16:42:11 -05:00
|
|
|
for i, n := range s.Linux.Namespaces {
|
|
|
|
if n.Type == nsType {
|
2016-12-14 04:34:29 -05:00
|
|
|
s.Linux.Namespaces = append(s.Linux.Namespaces[:i], s.Linux.Namespaces[i+1:]...)
|
|
|
|
return
|
2016-11-22 16:42:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|