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)
This commit is contained in:
Alexander Larsson 2014-05-28 20:27:03 +02:00
parent 83710135b6
commit b9325ded2a
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@ 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
}