Browse Source

Revert "Remove the bind mount for dev/console which override the mknod/label"

This reverts commit ae85dd54582e94d36b146ab1688844ed58cc8df3.

Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
Alexander Larsson 11 years ago
parent
commit
35d08bdd01
1 changed files with 3 additions and 0 deletions
  1. 3 0
      pkg/libcontainer/console/console.go

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

@@ -40,6 +40,9 @@ func Setup(rootfs, consolePath, mountLabel string) error {
 	if err := label.SetFileLabel(consolePath, mountLabel); err != nil {
 	if err := label.SetFileLabel(consolePath, mountLabel); err != nil {
 		return fmt.Errorf("set file label %s %s", dest, err)
 		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
 	return nil
 }
 }