Browse Source

Merge pull request #5781 from creack/remove_bind_console

Remove the bind mount for dev/console which override the mknod/label
Victor Vieux 11 năm trước cách đây
mục cha
commit
3bf1b562e3
1 tập tin đã thay đổi với 0 bổ sung3 xóa
  1. 0 3
      pkg/libcontainer/console/console.go

+ 0 - 3
pkg/libcontainer/console/console.go

@@ -40,9 +40,6 @@ func Setup(rootfs, consolePath, mountLabel string) error {
 	if err := label.SetFileLabel(consolePath, mountLabel); err != nil {
 		return fmt.Errorf("set file label %s %s", dest, err)
 	}
-	if err := system.Mount(consolePath, dest, "bind", syscall.MS_BIND, ""); err != nil {
-		return fmt.Errorf("bind %s to %s %s", consolePath, dest, err)
-	}
 	return nil
 }