diff --git a/daemon/core/netns/vnode.py b/daemon/core/netns/vnode.py index 3f50d028..e7819a83 100644 --- a/daemon/core/netns/vnode.py +++ b/daemon/core/netns/vnode.py @@ -120,7 +120,8 @@ class SimpleLxcNode(PyCoreNode): # unmount all targets while self._mounts: source, target = self._mounts.pop(-1) - self.umount(target) + # Mount namespaces automatically removed when last process exits! + #self.umount(target) # shutdown all interfaces for netif in self.netifs():