Merge pull request #1840 from avagin/empty-ns-network
cr: don't dump network devices and their configuration
This commit is contained in:
commit
bc1467269f
|
@ -125,7 +125,8 @@ var namespaceMapping = map[specs.LinuxNamespaceType]int{
|
|||
}
|
||||
|
||||
func setEmptyNsMask(context *cli.Context, options *libcontainer.CriuOpts) error {
|
||||
var nsmask int
|
||||
/* Runc doesn't manage network devices and their configuration */
|
||||
nsmask := unix.CLONE_NEWNET
|
||||
|
||||
for _, ns := range context.StringSlice("empty-ns") {
|
||||
f, exists := namespaceMapping[specs.LinuxNamespaceType(ns)]
|
||||
|
|
Loading…
Reference in New Issue